protocol.GetPlayerContextResponse
This response acts as an acknowledgment to its corresponding request as well as containing a collection of player contexts matching your request parameters.
Parameter | Optional | Max Allowed | DataType | Notes |
---|---|---|---|---|
cid | no | 1 | text | client id. used to track origin of any particular message |
ids | no | 1 | list | list of player ids |
n | no | 1 | integer | number of results returned |
col | no | 1 | list | list of context objects. |
Example xml:
<siresp> <cid>Mum</cid> <fn> <getPlayerStatus> <ids> <id>1</id> <id>3</id> </ids> <n>3</n> <col> <pctxt> <pid>1</pid> <actxt>radio</actxt> </pctxt> <pctxt> <pid>2</pid> <actxt>audiofile</actxt> </pctxt> <pctxt> <pid>3</pid> <actxt>none</actxt> </pctxt> </col> </getPlayerStatus> </fn> </siresp>