GetInboundShipmentData

Description

The GetInboundShipmentData operation returns your inbound shipment data without the item details for a given ShipmentId.

Request Parameters

NameDescriptionRequired

ShipmentId

The shipment identifier for your shipment.

Type: String

Default: None

Constraints: Must be a valid shipment identifier from GetInboundShipmentPreview.

Yes

Response Elements

NameDescription

ShipmentData

Information about a shipment. It does not list the items in a shipment.

Type: InboundShipmentData

Examples

Example SOAP Request

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Header>
        <aws:AWSAccessKeyId
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >1QZHP81N5R44N89PWYR2</aws:AWSAccessKeyId>
        <aws:Signature
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >29IGW5rMnaTF+xH4CUOocjsPSm8=</aws:Signature>
        <aws:Timestamp
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >2009-02-21T02:40:50Z</aws:Timestamp>
    </soapenv:Header>
    <soapenv:Body>
        <GetInboundShipmentData
            xmlns="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <ShipmentId>SSFI9ASOZZJH5V</ShipmentId>
        </GetInboundShipmentData>
    </soapenv:Body>
</soapenv:Envelope>

Example Query Request

https://fba-inbound.amazonaws.com/
?Action=GetInboundShipmentData
&Version=2007-05-10
&AWSAccessKeyId=1QZHP81N5R44N89PWYR2
&Signature=29IGW5rMnaTF+xH4CUOocjsPSm8=
&Timestamp=2009-02-21T02:40:50Z
&ShipmentId=SSFI9ASOZZJH5V

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns1:GetInboundShipmentDataResponse
            xmlns:ns1="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <ns1:GetInboundShipmentDataResult>
                <ns1:ShipmentData>
                    <ns1:ShipmentId>SSFI9ASOZZJH5V</ns1:ShipmentId>
                    <ns1:ShipmentName>AWS Test Shipment</ns1:ShipmentName>
                    <ns1:ShipmentStatus>Working</ns1:ShipmentStatus>
                    <ns1:DestinationFulfillmentCenter>RNO1</ns1:DestinationFulfillmentCenter>
                    <ns1:ShipToAddress>
                        <ns1:Name>Amazon.com</ns1:Name>
                        <ns1:AddressLine1>9085 Moya Blvd</ns1:AddressLine1>
                        <ns1:City>Reno</ns1:City>
                        <ns1:StateOrProvinceCode>NV</ns1:StateOrProvinceCode>
                        <ns1:CountryCode>USA</ns1:CountryCode>
                        <ns1:PostalCode>89506</ns1:PostalCode>
                    </ns1:ShipToAddress>
                    <ns1:ShipFromAddress>
                        <ns1:Name>AWS Test Address</ns1:Name>
                        <ns1:AddressLine1>Address Line 1</ns1:AddressLine1>
                        <ns1:AddressLine2>Address Line 2</ns1:AddressLine2>
                        <ns1:City>Seattle</ns1:City>
                        <ns1:StateOrProvinceCode>WA</ns1:StateOrProvinceCode>
                        <ns1:CountryCode>US</ns1:CountryCode>
                        <ns1:PostalCode>98104</ns1:PostalCode>
                    </ns1:ShipFromAddress>
                    <ns1:CreateDate>2008-02-22T02:40:50.000Z</ns1:CreateDate>
                </ns1:ShipmentData>
            </ns1:GetInboundShipmentDataResult>
            <ns1:ResponseMetadata>
                <ns1:RequestId>5adbc600-4109-4362-9427-78d75b490d7f</ns1:RequestId>
            </ns1:ResponseMetadata>
        </ns1:GetInboundShipmentDataResponse>
    </soapenv:Body>
</soapenv:Envelope>