POST api/Evaluate/EvaluateOrderList
取得使用者對特定訂單的評價
Request Information
URI Parameters
None.
Body Parameters
EvaluateOrderList_Input| Name | Description | Type | Additional information |
|---|---|---|---|
| Ticket |
身份票據 |
string |
Required |
| userId |
使用者ID |
string |
Required |
| orderNumber |
訂單編號 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Ticket": "sample string 1",
"userId": "sample string 2",
"orderNumber": "sample string 3"
}
text/html
Sample:
{"Ticket":"sample string 1","userId":"sample string 2","orderNumber":"sample string 3"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
取得使用者對特定訂單的評價
EvaluateOrderList_Output| Name | Description | Type | Additional information |
|---|---|---|---|
| ticketVerified |
驗證是否通過 |
boolean |
None. |
| evaluateProfit |
評價紅利回饋 |
integer |
None. |
| ImageProfit |
照片上傳紅利回饋 |
integer |
None. |
| username |
評價人名稱 |
string |
None. |
| evaluation |
評價分數 |
integer |
None. |
| text |
評價內容 |
string |
None. |
| imageURL |
附件圖片網址 |
Collection of string |
None. |
| checks |
Check 問卷資料 |
Collection of Questionaire |
None. |
Response Formats
application/json, text/json
Sample:
{
"ticketVerified": true,
"evaluateProfit": 2,
"ImageProfit": 3,
"username": "sample string 4",
"evaluation": 5,
"text": "sample string 6",
"imageURL": [
"sample string 1",
"sample string 2"
],
"checks": [
{
"Name": "sample string 1",
"Check": true
},
{
"Name": "sample string 1",
"Check": true
}
]
}
text/html
Sample:
{"ticketVerified":true,"evaluateProfit":2,"ImageProfit":3,"username":"sample string 4","evaluation":5,"text":"sample string 6","imageURL":["sample string 1","sample string 2"],"checks":[{"Name":"sample string 1","Check":true},{"Name":"sample string 1","Check":true}]}