Greg
Greg

Reputation: 6623

Is it possible to query the github api for any repos that a user is a collaborator on?

I seem to be missing if it's possible to query github for any / all repos that a member is a collaborator on? I'm writing a github oauth node app, and I'm trying to get, not only the members repos, but any repos they are a collaborator on. Is this possible?

Upvotes: 2

Views: 70

Answers (1)

Ivan Zuzak
Ivan Zuzak

Reputation: 18782

I think this endpoint should help you with that:

https://developer.github.com/v3/repos/#list-your-repositories

Notice the description and the available parameters.

Upvotes: 1

Related Questions