Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of the next version, still under development. See the latest release.

Move an issue between a project's columns

POST
/user/projects/{id}/issues/{issue_id}/move
curl --request POST \
--url https://gitea.com/api/v1/user/projects/1/issues/1/move \
--header 'Authorization: Basic <credentials>' \
--header 'Content-Type: application/json' \
--data '{ "column_id": 1, "sorting": 1 }'
id
required
integer format: int64

Id of the project

issue_id
required
integer format: int64

Global id of the issue, not the repository-local index

Media typeapplication/json

MoveProjectIssueOption represents options for moving an issue between columns

object
column_id
required

Target column to move the issue into

integer format: int64
sorting

Position within the column, ascending. Omit to append. Negative values sort above the rest, equal values are ordered newest first.

integer format: int64
Examplegenerated
{
"column_id": 1,
"sorting": 1
}

APIEmpty is an empty response

Media typeapplication/json

APIForbiddenError is a forbidden error response

Media typeapplication/json
message
string
url
string

APINotFound is a not found empty response

Media typeapplication/json

APIValidationError is error format response related to input validation

Media typeapplication/json
message
string
url
string

APIRepoArchivedError is an error that is raised when an archived repo should be modified

Media typeapplication/json
message
string
url
string