# Function Description
To get list of finished product
# Request
# request example
GET /video/list HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>
# Request Headers
| Name | Description | Type | Mandatory |
|---|---|---|---|
| Authorization | User token information | string | true |
# Request Parameters
| Field | Explain | Type | Mandatory |
|---|---|---|---|
| keyword | keyword of searching | string | 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": {
"videoCompiledCount": 17,
"videoCompiledList": [
{
"coverUrl": "https://...",
"createdAt": 1646904480000,
"jobId": 191,
"description": "",
"id": 18,
"title": "工程6",
"userId": 1,
"projectId": 16357,
"url": "",
"duration": 0,
"extension": "mp4"
},
...
]
}
}
| Field | Type | Explain | Mandatory |
|---|---|---|---|
| videoCompiledCount | number of finishing product | string | true |
| videoCompiledList | finishe product list | array | true |
| coverUrl | cover url | string | true |
| createdAt | create time stamp,in millisecond | number | true |
| jobId | task id | number | true |
| description | finished product description | string | true |
| id | finished product id | number | true |
| title | finished product name | string | true |
| userId | user id | number | true |
| projectId | project id | number | true |
| url | project url | string | true |
| duration | duration of finishing product,in microsecond | number | true |
| extension | file suffixes of finishing product | string | true |
Failed Response Body:
{
"code": <errorCode>,
"enMsg": <errorMessage>,
"msg": <errorMessage>,
"data": null
}