POST WEvalProject/SendVideoFiles
接收项目文件数据
Request Information
URI Parameters
None.
Body Parameters
ProjectFileRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| fileList | Collection of FileInfo |
None. |
|
| DeclarationId | globally unique identifier |
None. |
|
| ProjectCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fileList": [
{
"fileName": "sample string 1",
"fileUrl": "sample string 2"
},
{
"fileName": "sample string 1",
"fileUrl": "sample string 2"
}
],
"DeclarationId": "2bf62a9c-d924-4f20-8fd3-ae0be391374e",
"ProjectCode": "sample string 1"
}
application/xml, text/xml
Sample:
<ProjectFileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
<DeclarationId>2bf62a9c-d924-4f20-8fd3-ae0be391374e</DeclarationId>
<ProjectCode>sample string 1</ProjectCode>
<fileList>
<FileInfo>
<fileName>sample string 1</fileName>
<fileUrl>sample string 2</fileUrl>
</FileInfo>
<FileInfo>
<fileName>sample string 1</fileName>
<fileUrl>sample string 2</fileUrl>
</FileInfo>
</fileList>
</ProjectFileRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RemoteResponseOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errors | string |
None. |
|
| unauthed | boolean |
None. |
|
| result | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errors": "sample string 2",
"unauthed": true,
"result": true
}
application/xml, text/xml
Sample:
<RemoteResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model"> <Errors>sample string 2</Errors> <Result>true</Result> <Success>true</Success> <UnAuthorizedRequest>true</UnAuthorizedRequest> </RemoteResponseOfboolean>