下载批次退款明细
可获取到某批次的退款明细数据,包括订单号、单品信息、银行流水号等,用于对账/数据分析。
请求参数 | 类型 | 描述 |
---|---|---|
stock_id | string | 批次号 |
php
$instance->v3->marketing->favor->stocks->_stock_id_->refundFlow->getAsync([
'stock_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/marketing/favor/stocks/{stock_id}/refund-flow')->getAsync([
'stock_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/marketing/favor/stocks/{stock_id}/refund-flow']->getAsync([
'stock_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->marketing->favor->stocks->_stock_id_->refundFlow->get([
'stock_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/favor/stocks/{stock_id}/refund-flow')->get([
'stock_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/favor/stocks/{stock_id}/refund-flow']->get([
'stock_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
url | string | 下载链接 |
hash_value | string | 安全校验码 |
hash_type | string | 哈希算法类型 |
参阅 官方文档