加入项目
POST
/api/applied_projects.json最后修改时间: 1 年前
请求参数
Body 参数application/json
applied_project
object
必需
code
string
必需
role
string
必需
示例
{
"applied_project": {
"code": "string",
"role": "string"
}
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
project
object
申请加入的项目
id
integer
必需
identifier
string
必需
name
string
必需
description
null
必需
is_public
boolean
必需
owner
object
必需
user
object
申请者
id
integer
必需
type
string
必需
name
string
必需
login
string
必需
image_url
string
必需
id
integer
申请ID
status
string
申请状态
canceled:取消,common:正在申请, accept:已接受,refuse:已拒绝
role
string
申请的角色
created_at
string
申请创建时间
time_ago
string
申请创建时间
示例成功示例
{
"project": {
"id": 17,
"identifier": "testdevops",
"name": "testdevops",
"description": null,
"is_public": true,
"owner": {
"id": 113,
"type": "User",
"name": "heihei",
"login": "yystopfceshi",
"image_url": "system/lets/letter_avatars/2/H/145_178_168/120.png"
}
},
"user": {
"id": 110,
"type": "User",
"name": "咸蛋黄土豆丝xxx",
"login": "yystopf",
"image_url": "system/lets/letter_avatars/2/X/230_139_26/120.png"
},
"id": 1,
"status": "common",
"role": "developer",
"created_at": "2023-08-05 18:27",
"time_ago": "刚刚"
}
最后修改时间: 1 年前