文档
测试

3.4 Order

POST
/api/log/Order

接口描述

View the details of a single order

Headers

参数名
类型
描述
必填
Authorization
string
Example:9b358d8549004bd0bb48b3f94ae7e2a5
必填
Content-Language
string
Language packs (optional), the default language for opening an account, Example:ENG
必填

Form Data

参数名
类型
描述
必填
OrderID
number
Example:18763
必填

Response

参数名
类型
描述
必填
success
number
Example:1
必填
msg
string
Example:17ms
必填
info
object
Data dictionary
必填
Combo
object
For the contents of the Combo order, please refer to the description of the customs clearance order in 3.3 Get
必填
Smart
object
For the contents of the Smart order, please refer to the description of the customs clearance order in 3.3 Get
必填
Single
object
For the contents of the Single order, please refer to the description of the customs clearance order in 3.3 Get
必填

说明 / 示例

`` ` curl https://api.xx.com/api/log/Order -X POST -H "Authorization: 9b358d8549004bd0bb48b3f94ae7e2a5" -H "Content-Type: application / x-www-form-urlencoded" -d "OrderID = 1000" `` ` Return content: ``` {   success: 1,   msg: "1ms",   info: {     Type: "Combo",     OrderID: "18763",     UserName: "ceshi01",     Status: "None",     CreateAt: "2020/4/15 16:06:34",     UpdateAt: "2020/4/15 16:06:35",     RewardAt: "1900/1/1 0:00:00",     BetAmount: "10.0000",     BetMoney: "0.0000",     Money: "0.0000",     OddsType: "EU",     Odds: "3.1910",     IP: "180.191.155.5",     Language: "CHN",     Platform: ["PC", "Windows"],     ReSettlement: 0,     IsTest: 0,     Details: [       {         DetailID: "18764",         CateID: "2",         Category: "League of Legends",         LeagueID: "2",         League: "2020 Vietnam Professional League Spring Season",         MatchID: "511",         Match: "100 Academy VS TL Academy",         StartAt: "2020/4/15 19:00:00",         EndAt: "2020/4/17 23:00:00",         BetID: "12932",         Bet: "{round} -Both teams kill Baron",         Content: "100.A",         ResultAt: "1900/1/1 0:00:00",         Result: "",         OddsType: "EU",         Odds: "1.8994",         Status: "None"       },       {         DetailID: "18765",         CateID: "2",         Category: "League of Legends",         LeagueID: "4",         League: "2020 Turkish Professional League Winter",         MatchID: "534",         Match: "Inside Games VS SAMCLAN Esports",         StartAt: "2020/4/15 23:00:00",         EndAt: "2020/4/16 12:00:00",         BetID: "12955",         Bet: "Win the game",         Content: "IG",         ResultAt: "1900/1/1 0:00:00",         Result: "",         OddsType: "EU",         Odds: "1.6800",         Status: "None"       }     ] } } ```