获取邀请链接信息
GET
/api/{owner}/{repo}/project_invite_links/show_link.json最后修改时间: 1 年前
用户请求链接时,通过该接口来获取链接的信息
请求参数
Path 参数
owner
string
项目拥有者标识
repo
string
项目标识
Query 参数
invite_sign
string
项目邀请链接的标识
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
integer
必需
role
string
邀请角色
is_apply
boolean
邀请是否需要审核
sign
string
邀请标识
expired_at
string
邀请过期的时间
user
object
邀请创建者
id
integer
必需
type
string
必需
name
string
必需
login
string
必需
image_url
string
必需
project
object
邀请所属项目
id
integer
必需
identifier
string
必需
name
string
必需
description
null
必需
is_public
boolean
必需
owner
object
必需
示例成功示例
{
"id": 2,
"role": "developer",
"is_apply": true,
"sign": "f5dc6f8191c234fe2bee3e44c7fd770538af3e1db0e34934b9718c325614f578",
"expired_at": "2023-10-24 16:48",
"user": {
"id": 113,
"type": "User",
"name": "heihei",
"login": "yystopfceshi",
"image_url": "system/lets/letter_avatars/2/H/145_178_168/120.png"
},
"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"
}
}
}
最后修改时间: 1 年前