买家订单状态列表
POST
/merchant/order/v2/buyer/status
请求参数
Authorization
在 query 添加参数
app-key
示例:
app-key: ********************
Query 参数
app-key
string
可选
默认值:
{{app-key}}
Header 参数
app-key
string
可选
默认值:
d6717ac8122b4e2dae6c6f25e95ede2f
Body 参数application/json
pageNum
integer
页码
pageSize
integer
必需
status
integer
可选
orderIds
array[string]
可选
示例
{
"pageNum": 1,
"pageSize": 100,
"status": null,
"orderIds": [
"1321962503360282624",
"1321690715849805825"
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://openapi.c5game.com//merchant/order/v2/buyer/status?app-key' \
--header 'app-key: d6717ac8122b4e2dae6c6f25e95ede2f' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNum": 1,
"pageSize": 100,
"status": null,
"orderIds": [
"1321962503360282624",
"1321690715849805825"
]
}'
返回响应
🟢200成功
application/json
Body
success
boolean
必需
data
object
必需
total
string
必需
pages
integer
必需
page
integer
必需
limit
integer
必需
list
array [object {11}]
必需
errorCode
integer
必需
errorMsg
null
必需
errorData
null
必需
errorCodeStr
null
必需
示例
{
"success": true,
"data": {
"total": "2",
"pages": 1,
"page": 1,
"limit": 100,
"list": [
{
"orderId": "1321962503360282624",
"productId": "1321358865675374592",
"price": 0.02,
"buyerFee": 0,
"statusName": "success",
"status": 10,
"deliverType": 1,
"receiveSteamId": "76561199022064770",
"createTime": 1729393984,
"type": 1,
"tradeOfferId": null
},
{
"orderId": "1321690715849805825",
"productId": "1321231105602670592",
"price": 0.07,
"buyerFee": 0,
"statusName": "success",
"status": 10,
"deliverType": 1,
"receiveSteamId": "76561199022064770",
"createTime": 1729329184,
"type": 1,
"tradeOfferId": null
}
]
},
"errorCode": 0,
"errorMsg": null,
"errorData": null,
"errorCodeStr": null
}
修改于 2024-10-23 13:56:45