取消转移项目
POST
/api/{owner}/{repo}/applied_transfer_projects/cancel.json最后修改时间: 1 年前
edit接口的is_transfering为true表示正在迁移
请求参数
Path 参数
owner
string
项目拥有者标识
repo
string
项目标识
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
project
object
迁移项目
id
integer
必需
identifier
string
必需
name
string
必需
description
string
必需
is_public
boolean
必需
owner
object
迁移项目的拥有者
user
object
迁移创建者
id
integer
必需
type
string
必需
name
string
必需
login
string
必需
image_url
string
必需
owner
object
迁移拥有者
id
integer
必需
type
string
必需
name
string
必需
login
string
必需
image_url
string
必需
id
integer
项目ID
status
string
项目迁移状态
canceled:取消,common:正在迁移, accept:已接受,refuse:已拒绝
created_at
string
项目迁移创建的时间
time_ago
string
项目迁移创建的时间
示例成功示例
{
"project": {
"id": 86,
"identifier": "ceshi_repo1",
"name": "测试项目啊1",
"description": "二十多",
"is_public": true,
"owner": {
"id": 52,
"type": "Organization",
"name": "身份卡手动阀",
"login": "ceshi1",
"image_url": "images/avatars/Organization/52?t=1618805056"
}
},
"user": {
"id": 6,
"type": "User",
"name": "yystopf",
"login": "yystopf",
"image_url": "system/lets/letter_avatars/2/Y/241_125_89/120.png"
},
"owner": {
"id": 9,
"type": "Organization",
"name": "测试组织",
"login": "ceshi_org",
"image_url": "images/avatars/Organization/9?t=1612706073"
},
"id": 4,
"status": "common",
"created_at": "2021-04-26 09:54",
"time_ago": "1分钟前"
}
最后修改时间: 1 年前