GET /user/repos
Lists repositories that the authenticated user has explicit permission (:read
, :write
, or :admin
) to access.
The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.
Servers
- https://api.github.com
Query parameters
Name | Type | Required | Description |
---|---|---|---|
affiliation |
String | No |
Comma-separated list of values. Can include:
Default value: "owner,collaborator,organization_member" |
page |
Integer | No |
The page number of the results to fetch. For more information, see "Using pagination in the REST API." Default value: 1 |
visibility |
String | No |
Limit results to repositories with the specified visibility. Possible values:
Default value: "all" |
direction |
String | No |
The order to sort by. Default: Possible values:
|
sort |
String | No |
The property to sort the results by. Possible values:
Default value: "full_name" |
per_page |
Integer | No |
The number of results per page (max 100). For more information, see "Using pagination in the REST API." Default value: 30 |
type |
String | No |
Limit results to repositories of the specified type. Will cause a Possible values:
Default value: "all" |
since |
String | No |
Only show repositories updated after the given time. This is a timestamp in ISO 8601 format: |
before |
String | No |
Only show repositories updated before the given time. This is a timestamp in ISO 8601 format: |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.