# Function description

Get all material data Returns the links corresponding to all the materials, used to download the materials before loading the project, and build the timeline

# Request

# Request example

GET /materialNew/all HTTPS
Host: <host>
Content-Type: application/json 
Authorization: <AuthString>

# Request Parameters

none

# Request Headers

Name Description Type Mandatory
Authorization User token information string yes

# Request Body

none

# Response

# Response Header

No special response header

# Response Body

Successful Response Body :

{
  "code": 0,
  "message": "",
  "data": {
    "materialList": [
      {
        "packageUrl": "https://host/006B7EF0-F4F4-46BE-98C9-F2006B803B86.3.videofx",
        "id": "006B7EF0-F4F4-46BE-98C9-F2006B803B86",
        "LicenseUrl": "https://host/006B7EF0-F4F4-46BE-98C9-F2006B803B86.3.lic"
      },
      ...
    ]
  }
}

The response body of the failed request is

{
  "code": <errorCode>,
  "message": <errorMessage>,
  "data": null
}