TTWUSA APIV2

财务管理

补收费用查询

查询补收费用。

POST
生产环境https://ssl.glitzcloud.com/agent/v1/api/charge/remedyQuery
测试环境http://gztest.glitzcloud.com/agent/v1/api/charge/remedyQuery

说明

1、功能名称:查询补收费用

2、功能描述:查询补收费用

鉴权说明

请参阅鉴权签名说明。

请求参数

名称必填类型示例值描述
store_nameStringThe Warehouse USA仓库名称
date_fromString2025-12-01起始时间
date_endString2025-12-31结束时间

返回字段

参数类型示例值描述
typeStringOutbound类型
order_snString303135316单据号
costFloat0.00000补收费用
cost_nameStringInboundDelay费用类型

示例

请求示例
{
    "apikey": "d661bb3e81711e693f100163e06045f",
    "date_from": "2025-12-01",
    "date_end": "2025-12-31",
    "secretkey": "d661bb7581711e693f100163e06045f",
    "store_name": "TWUSA-Dallas",
    "sign": "5500fad4f9cbef5768d2e80f8c6a68b"
}
返回示例
{
    "status": 200,
    "reqMsg": "ok",
    "result": [
        {
            "type": "Outbound",
            "order_sn": "303135316",
            "cost": "0.57",
            "cost_name": "Additional"
        },
        {
            "type": "Intbound",
            "order_sn": "GCI12172500002",
            "cost": "150.00",
            "cost_name": "InboundDelay"
        }
    ],
    "start": "2025-12-01 00:00:00",
    "end": "2025-12-31 23:59:59"
}