reportStatus
This endpoint 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
<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
<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>
Updated over 2 years ago