1
0
mirror of synced 2026-01-07 00:01:39 -05:00

Merge pull request #28200 from github/repo-sync

Repo sync
This commit is contained in:
docs-bot
2023-09-13 05:36:46 -07:00
committed by GitHub

View File

@@ -58,7 +58,10 @@ You can also access these reports programmatically via standard HTTP authenticat
For example, here is how you would download the "all users" report in a `curl` command:
```shell
curl -L -u USERNAME:TOKEN http(s)://HOSTNAME/stafftools/reports/all_users.csv
curl --remote-name \
--location \
--user 'USERNAME:TOKEN' \
http(s)://HOSTNAME/stafftools/reports/all_users.csv
```
To access the other reports programmatically, replace `all_users` with `active_users`, `dormant_users`, `suspended_users`, `all_organizations`, or `all_repositories`.