GetServiceStatus (Inbound)

Description

The GetServiceStatus operation requests a brief status message from the service.

Request Parameters

The GetServiceStatus operation has no request parameters.

Response Elements

NameDescription

Status

Status of the service. If you entered valid access identifiers, the service returns a message stating that it is responding, along with the date, time, and the service version number.

Type: String

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/"
            >0QY05JR56ZA8E56XPG82</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/"
            >FvUH0tcso/u1P4vqJt7cXLPGrV8=</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-01-23T00:43:12Z</aws:Timestamp>
    </soapenv:Header>
    <soapenv:Body>
        <GetServiceStatus
            xmlns="http://fba-inbound.amazonaws.com/doc/2007-05-10/"/>
    </soapenv:Body>
</soapenv:Envelope>

Example Query Request

https://fba-inbound.amazonaws.com/
?Action=GetServiceStatus
&Version=2007-05-10
&AWSAccessKeyId=0QY05JR56ZA8E56XPG82
&Signature=FvUH0tcso/u1P4vqJt7cXLPGrV8=
&Timestamp=2009-01-23T00:43:12Z

Example Response

<?xml version="1.0"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns1:GetServiceStatusResponse
            xmlns:ns1="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <ns1:GetServiceStatusResult>
                <ns1:Status>2008-01-23 16:43:12.975 PST service responding.
                    [Version: 2007-05-10]</ns1:Status>
            </ns1:GetServiceStatusResult>
            <ns1:ResponseMetadata>
                <ns1:RequestId>5fa04c3a-4bb4-485d-926c-e3c8002c192e</ns1:RequestId>
            </ns1:ResponseMetadata>
        </ns1:GetServiceStatusResponse>
    </soapenv:Body>
</soapenv:Envelope>