1
0
mirror of synced 2026-01-06 15:01:04 -05:00
Files
docs/content/rest/overview/endpoints-available-for-github-apps.md
Laura Coursen 8f964ea2cb GHEC version (#20947)
Co-authored-by: Matt Pollard <mattpollard@users.noreply.github.com>
Co-authored-by: Grace Park <gracepark@github.com>
Co-authored-by: Steve Guntrip <12534592+stevecat@users.noreply.github.com>
Co-authored-by: Robert Sese <sese@github.com>
Co-authored-by: Peter Bengtsson <peterbe@github.com>
Co-authored-by: Rachael Sewell <rachmari@github.com>
2021-10-15 15:41:33 -05:00

33 lines
1.2 KiB
Markdown

---
title: Endpoints available for GitHub Apps
intro: Your app can make requests to the following REST endpoints.
redirect_from:
- /v3/apps/available-endpoints
- /rest/reference/endpoints-available-for-github-apps
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- API
shortTitle: GitHub App-enabled endpoints
---
You must use an installation access token to access endpoints using your {% data variables.product.prodname_github_app %}. For more information, see "[Authenticating with {% data variables.product.prodname_github_apps %}](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation)."
{% for thing in rest.operationsEnabledForGitHubApps[currentVersion] %}
{% assign category = thing[0] %}
{% assign operations = thing[1] %}
{% if operations.size > 0 %}
<h3 id="{{category}}">
<a href="#{{category}}">{{ category }}</a>
</h3>
<ul>
{% for operation in operations %}
<li><a href="/{{currentLanguage}}/rest/reference/{{operation.category}}#{{operation.slug}}"><code><span style="text-transform: uppercase">{{operation.verb}}</span> {{operation.requestPath}}</code></a></li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}