Get commit authors

GET {{baseUrl}}/repos/:owner/:repo/import/authors?since=<string>

Each type of source control system represents authors in a different way. For example, a Git commit author has a display name and an email address, but a Subversion commit author just has a username. The GitHub Importer will make the author information valid, but the author might not be correct. For example, it will change the bare Subversion username hubot into something like hubot <hubot@12341234-abab-fefe-8787-fedcba987654>.

This endpoint and the Map a commit author endpoint allow you to provide correct Git author information.

Request Params

KeyDatatypeRequiredDescription
sincestringOnly show notifications updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

RESPONSES

status: OK

[{&quot;id&quot;:2268557,&quot;remote_id&quot;:&quot;nobody@fc7da526-431c-80fe-3c8c-c148ff18d7ef&quot;,&quot;remote_name&quot;:&quot;nobody&quot;,&quot;email&quot;:&quot;hubot@github.com&quot;,&quot;name&quot;:&quot;Hubot&quot;,&quot;url&quot;:&quot;https://api.github.com/repos/octocat/socm/import/authors/2268557&quot;,&quot;import_url&quot;:&quot;https://api.github.com/repos/octocat/socm/import&quot;},{&quot;id&quot;:2268558,&quot;remote_id&quot;:&quot;svner@fc7da526-431c-80fe-3c8c-c148ff18d7ef&quot;,&quot;remote_name&quot;:&quot;svner&quot;,&quot;email&quot;:&quot;svner@fc7da526-431c-80fe-3c8c-c148ff18d7ef&quot;,&quot;name&quot;:&quot;svner&quot;,&quot;url&quot;:&quot;https://api.github.com/repos/octocat/socm/import/authors/2268558&quot;,&quot;import_url&quot;:&quot;https://api.github.com/repos/octocat/socm/import&quot;},{&quot;id&quot;:2268559,&quot;remote_id&quot;:&quot;svner@example.com@fc7da526-431c-80fe-3c8c-c148ff18d7ef&quot;,&quot;remote_name&quot;:&quot;svner@example.com&quot;,&quot;email&quot;:&quot;svner@example.com@fc7da526-431c-80fe-3c8c-c148ff18d7ef&quot;,&quot;name&quot;:&quot;svner@example.com&quot;,&quot;url&quot;:&quot;https://api.github.com/repos/octocat/socm/import/authors/2268559&quot;,&quot;import_url&quot;:&quot;https://api.github.com/repos/octocat/socm/import&quot;}]