-
Notifications
You must be signed in to change notification settings - Fork 65.7k
Closed
Labels
contentThis issue or pull request belongs to the Docs Content teamThis issue or pull request belongs to the Docs Content teamgood first issueGood for newcomersGood for newcomerstriageDo not begin working on this issue until triaged by the teamDo not begin working on this issue until triaged by the team
Description
What article(s) is affected?
Briefly summarize the problem with the docs and its impact on GitHub's users.
All code samples for the Management Console API have the /api/v3 which is unnecessary
Describe the desired docs changes and the problem they solve for customers.
Let's take this as an example.
The shell code sample is
curl \
-H "Accept: application/vnd.github.v3+json" \
http(s)://{hostname}/api/v3/setup/api/configcheck
This is wrong. The correct endpoint URL is
curl \
-H "Accept: application/vnd.github.v3+json" \
http(s)://{hostname}/setup/api/configcheck
All code samples in this section has the same error.
Metadata
Metadata
Assignees
Labels
contentThis issue or pull request belongs to the Docs Content teamThis issue or pull request belongs to the Docs Content teamgood first issueGood for newcomersGood for newcomerstriageDo not begin working on this issue until triaged by the teamDo not begin working on this issue until triaged by the team