This API is deprecated.
Sonos uses reportStatus
to report on radio stream failures.
Request parameters
Name | Type | Description |
---|---|---|
id |
string(128) | The ID of the played track. |
errorCode |
int | The numerical identifier for the error. |
message |
string | The error message. |
Response
None.
Sample request
1 2 3 4 5 6 7 8 9 |
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <reportStatus xmlns="http://www.sonos.com/Services/1.1"> <id>t10001</id> <errorCode>00001</errorCode> <message>Error Message</message> </reportStatus> </soap:Body> </soap:Envelope> |
Sample response
1 2 3 4 5 6 |
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <reportStatusResponse xmlns="http://www.sonos.com/Services/1.1"> </reportStatusResponse> </soap:Body> </soap:Envelope> |