# Function Description

Get the project details by project id.

# Request

# request example

GET  /project/info HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>

# Request Parameters

Field explain type Mandatory
id project id int true

#

# Request Headers

Name Description Type Mandatory
Authorization User token information string true

# Request Body

none

# Response

# Response Header

No special response header

# Response Body

Successful Response Body:

{
  "code": 0,
  "enMsg": "success",
  "msg": "成功",
  "data": {
    "projectId": 16385,
    "title": "1",
    "coverUrl": "https://alieasset.meishesdk.com/test/resource/image/2022/03/07/276/2313d21835134d38a2cb96cbfe154782.jpg",
    "createdAt": 1646633366,
    "modifyAt": 1646634721,
    "url": "https://alieasset.meishesdk.com/test/bs_project/2022/03/07/16385/cc5d66f279304a9a861420b75abcc21d.xml",
    "uuid": "381b59fecf8843afa4cee889a8074d63",
    "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

Failed Response Body:

{
  "code": -1,
  "enMsg": "failed",
  "msg": "失败"
}