Add an issue to a project column
POST
/orgs/{org}/projects/{id}/columns/{column_id}/issues/{issue_id}
const url = 'https://gitea.com/api/v1/orgs/example/projects/1/columns/1/issues/1';const options = {method: 'POST', headers: {Authorization: 'Basic <credentials>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://gitea.com/api/v1/orgs/example/projects/1/columns/1/issues/1 \ --header 'Authorization: Basic <credentials>'Assigns the issue to the project if it is not a member yet, then places it in the column.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”org
required
string
Name of the organization
id
required
integer format: int64
Id of the project
column_id
required
integer format: int64
Id of the column
issue_id
required
integer format: int64
Global id of the issue, not the repository-local index
Responses
Section titled “Responses”APIEmpty is an empty response
APIForbiddenError is a forbidden error response
Headers
Section titled “Headers”message
string
url
string
APINotFound is a not found empty response
APIValidationError is error format response related to input validation
Headers
Section titled “Headers”message
string
url
string
APIRepoArchivedError is an error that is raised when an archived repo should be modified
Headers
Section titled “Headers”message
string
url
string