curl --location --request POST 'https://app.leiga.com/openapi/api/version/all-version' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNumber": 1,
"statusList": [
"release"
],
"ownerIds": [
1
],
"name": "xxx",
"pageSize": 10
}'
{
"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"
}
]
}
}