POST api/Login/IsProcessingOrder
檢查該會員是否還有任何處理中的訂單
Request Information
URI Parameters
None.
Body Parameters
IsProcessingOrder_Input| Name | Description | Type | Additional information |
|---|---|---|---|
| Ticket |
身份票據 |
string |
Required |
| userId |
使用者帳號 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Ticket": "sample string 1",
"userId": "sample string 2"
}
text/html
Sample:
{"Ticket":"sample string 1","userId":"sample string 2"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
檢查該會員是否還有任何處理中的訂單
IsProcessingOrder_Output| Name | Description | Type | Additional information |
|---|---|---|---|
| ticketVerified |
驗證是否通過 |
boolean |
None. |
| ProcessingOrder |
處理中的訂單數量 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ticketVerified": true,
"ProcessingOrder": 2
}
text/html
Sample:
{"ticketVerified":true,"ProcessingOrder":2}