Checks if a user has permission to be assigned to a specific issue.If the assignee can be assigned to this issue, a 204 status code with no content is returned.Otherwise a 404 status code is returned.
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'https://api.github.com/repos///issues//assignees/'
Response Response Example
204 - Example 1
{}
Request
Path Params
owner
stringÂ
required
The account owner of the repository. The name is not case sensitive.
repo
stringÂ
required
The name of the repository. The name is not case sensitive.
issue_number
integerÂ
required
The number that identifies the issue.
assignee
stringÂ
required
Responses
🟢204Response if `assignee` can be assigned to `issue_number`
application/json
Body
object {0}
🟠404Response if `assignee` can not be assigned to `issue_number`