How can I get the date at which the issue was assigned to a user, using the GitHub API?

Viewed 58
1 Answers

Nothing in the issue API mentioned "assigned_date".

You can get the issues assigned to a given user, but without knowing when each issue was assigned to said user.
Meaning: that "event" (assigning an issue to a user) does not trigger a date recording.

Related