Get Project Information By Project Key
GET
/project/get-by-project-keyRequest
Query Params
projectKey
string
required
Project Key
Example:
1
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
leader
string
optional
Project Leader
description
string
optional
Description
updateTime
string <date>
optional
Last Update Time
avatar
integer <int64>
optional
Icon
url
string
optional
URL
leaderId
integer <int64>
optional
Project Leader ID
archived
integer <int32>
optional
Archived (1:Yes, 0:No)
projectKey
string
optional
Project Key
createBy
integer <int64>
optional
Project Creator
createTime
string <date>
optional
Creation Time
projectCategory
integer <int64>
optional
Project Category
id
integer <int64>
optional
Project ID
projectName
string
optional
Project Name
status
integer <int32>
optional
Project Status
Example
{
"code": "0",
"data": {
"leader": "xxx",
"description": "xxx",
"updateTime": 1646301600000,
"avatar": 1,
"url": "xxx",
"leaderId": 1,
"archived": 1,
"projectKey": "xxx",
"createBy": 1,
"createTime": 1646301600000,
"projectCategory": 1,
"id": 1,
"projectName": "xxx",
"status": 1
}
}
Last modified: 7 months ago