# Function Description
Get the project details by project id.
# Request
# request example
GET /project/list HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>
Cache-Control: 'no-cache'
# Request Headers
Name | Description | Type | Mandatory |
---|---|---|---|
Authorization | User token information | string | true |
# Request Parameters
Field | explain | type | Mandatory |
---|---|---|---|
keyword | searching keyword | string | true |
sort | sorting rules - create time-1 - modify time-2 | int | true |
page | number of pages | int | true |
pageSize | items per page | int | true |
# Request Body
none
# Response
# Response Header
No special response header
# Response Body
Successful Response Body:
{
"code": 0,
"enMsg": "success",
"msg": "成功",
"data": {
"projectCount": 57,
"projectList": [
{
"projectId": 16387,
"title": "1",
"coverUrl": "https://alieasset.meishesdk.com/test/resource/image/2022/03/07/279/b63f84078f3243c1aa3c7583c70c121c.jpg",
"createdAt": 1646640246,
"modifyAt": 1646640761,
"url": "https://alieasset.meishesdk.com/test/bs_project/2022/03/07/16387/80aad52ae73c4c67b31c5db4a8b2bcf8.xml",
"uuid": "b2f838d3e1d646c4a86e848fa07ea65a",
"userId": 1,
"path": null,
"type": 1,
"liveUrl": "",
"resolvingPower": "540",
"splitVideoUrl": null,
"resourceId": null,
"jobId": null,
"status": null
},
...
]
}
}
Field | Type | Explain | Mandatory |
---|---|---|---|
projectId | number | project id | true |
title | string | project name | true |
coverUrl | string | cover link | true |
createdAt | number | create time stamp,in second | true |
modifyAt | number | modify time stamp,in second | true |
url | string | project xml file | true |
uuid | string | Universally Unique Identifier | true |
userId | number | user id | true |
path | string | storage key | false |
type | number | project type | true |
liveUrl | string | Live url | false |
resolvingPower | string | resolution,The timeline of the front page is creating according to the resolution | false |
splitVideoUrl | string | url of split video | false |
resourceId | number | resource id | false |
jobId | number | project task id | false |
status | number | project status | false |
{
"code": -1,
"enMsg": "failed",
"msg": "失败"
}