1

我是联邦快递网络服务 API 的新手。

我想打印出境货物的退货标签。我尝试在标签下包含以下 RequestedShipment/SpecialServicesRequested标签。但我收到错误消息“退货时不允许使用备用发件人”。

这是我的请求看起来像..

<RequestedShipment>

    .
    .

    <SpecialServicesRequested>

        .
        .   

        <ReturnShipmentDetail>
            <ReturnType>PRINT_RETURN_LABEL</ReturnType>
        </ReturnShipmentDetail>

        .
        .

    </SpecialServicesRequested>

    .
    .

</RequestedShipment>

提前致谢...

更新:我正在使用联邦快递 API 10。

4

1 回答 1

2

请求返回标签时,请求中不应包含以下两个元素。

LabelSpecification/ PrintedLabelOrigin/ Contact LabelSpecification/ PrintedLabelOrigin/ Address

以上元素用于从默认的送货地址值覆盖退货地址。:)

于 2013-10-03T09:23:48.463 回答