| title | User Emails | GitHub API |
|---|
- TOC {:toc}
Management of email addresses via the API requires that you are authenticated.
GET /user/emails
<%= headers 200 %> <%= json ["octocat@github.com", "support@github.com"] %>
POST /user/emails
You can post a single email address or an array of addresses:
<%= json ["octocat@github.com", "support@github.com"] %>
<%= headers 201 %> <%= json ["octocat@github.com", "support@github.com"] %>
DELETE /user/emails
You can include a single email address or an array of addresses:
<%= json ["octocat@github.com", "support@github.com"] %>
<%= headers 204 %>