Github API

Getting access, Developing, Testing

Back to Github

Check if a user can be assigned to a issue

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.

Input

type: object properties: parameters: type: object properties: owner: type: string description: The account owner of the repository. The name is not case sensitive. repo: type: string description: The name of the repository. The name is not case sensitive. issue_number: type: integer description: The number that identifies the issue. assignee: type: string required: - owner - repo - issue_number - assignee title: Parameters