Summary
Sends status information on a station back to RadioTime.
Input
| Field | Description |
|---|---|
| id | The guide ID of the station associated with this report |
| code | The numeric error code encountered with the station |
| message | The textual message associated with the error |
| url | The stream URL associated with this report (if station ID is not available) |
<?xml version="1.0" encoding="utf-16"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<credentials xmlns="http://www.sonos.com/Services/1.1">
<deviceId>0A:23:32:5B:9E:DC</deviceId>
<deviceProvider>YourProduct</deviceProvider>
</credentials>
</soap:Header>
<soap:Body>
<reportStatus xmlns="http://www.sonos.com/Services/1.1">
<id>s32500</id>
<code>404</code >
<message>FILE NOT FOUND</message>
<url />
</reportStatus>
</soap:Body>
</soap:Envelope>
Output
An empty SOAP envelope; essentially a void response.
<?xml version="1.0" encoding="utf-16"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<reportStatusResponse xmlns="http://www.sonos.com/Services/1.1" />
</soap:Body>
</soap:Envelope>