Get Version List
POST
/version/all-versionRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
pageNumber
integer <int32>
optional
Page Number
statusList
array [object]
optional
Version Status List
ownerIds
array [object]
optional
Version Owner List
name
string
optional
Version Name
pageSize
integer <int32>
optional
Page Size
Example
{
"pageNumber": 1,
"statusList": [
"release"
],
"ownerIds": [
1
],
"name": "xxx",
"pageSize": 10
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
releasedDate
string <date>
optional
Actual Release Date
ownerName
string
optional
Version Owner Name
name
string
optional
Version Name
statusName
string
optional
Status Name
description
string
optional
Version Description
id
integer <int64>
optional
Version ID
ownerId
integer <int64>
optional
Version Owner ID
startDate
string <date>
optional
Start Date
planDate
string <date>
optional
Estimated Release Date
status
string
optional
Version Status
Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"releasedDate": 1646301600000,
"ownerName": "xxx",
"name": "xxx",
"statusName": "xxx",
"description": "xxx",
"id": 1,
"ownerId": 1,
"startDate": 1646301600000,
"planDate": 1646301600000,
"status": "release"
}
]
}
}
Last modified: 7 months ago