GetRepoAssignees
List the available assignees for the repository issue
Path Parameters
- owner required
The owner of the repository, generally called "username". The name is not case sensitive.
- repo required
repository name, the name is not case sensitive
- issue_number required
issue num
Header Parameters
- Authorization required
Private token | app token(ats) (needs to start with Bearer plus a space)
Responses
- 200
- 401
- 403
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- id string
id
- login string
username
- url string
user url
- avatar_url string
avatar_url
- html_url string
html_url
- type string
user type - User | Bot
- ]
[
{
"id": "62c791bede9059102516aa8f",
"login": "lik0914",
"url": "https://api.atomgit.com/users/lik0914",
"avatar_url": "https://xxx.com/uploads/user/1657265547983_3769.png",
"html_url": "https://atomgit.com/lik0914",
"type": "User"
}
]
Invalid token, please check if the token is correct.
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- error string
error name
- error_description string
wrong description
{
"error": "invalid_token",
"error_description": "Invalid token, please provide correct token"
}
- Schema
- Example (from schema)
Schema
- error string
error name
- error_description string
wrong description
<root>
<error>invalid_token</error>
<error_description>Invalid token, please provide correct token</error_description>
</root>
Permission exception
- application/json
- Schema
- Example (from schema)
Schema
- error_code string
error name
- error_message string
wrong description
{
"error_code": "string",
"error_message": "string"
}
Loading...