# Introduction `UBX` is a command introduced with [MSNP11](../versions/msnp11.md). It is a Notification Server command, WITH a response payload. For the version of the command that is sent by the client, read [UUX](uux.md). # Client/Request This command can not be sent from the client. # Server/Response ``` UBX user-handle {network-id} length payload ``` Where `user-handle` is the user handle assocated with this data. Where `network-id` is a Network Identification Number. Added since [MSNP14](../versions/msnp14.md). Where `length` is the size (in bytes) of the `payload`. Where `payload` is the XML data for this user on the Forward List (FL), contained in a `` element: * ``: The user's new Personal Status Message. * ``: The user's new currently playing media status. * ``: The GUID of the computer that the user is using. Added since [MSNP13](../versions/msnp13.md). # Examples ## Without MachineGuid *Only in [MSNP11](../versions/msnp11.md) and [MSNP12](../versions/msnp12.md).* ### Blank status ``` S: UUX anotheruser@hotmail.com 53 ``` ### With PSM ``` S: UUX anotheruser@hotmail.com 75 example status message ``` ### With playing media ``` S: UUX anotheruser@hotmail.com 137 example status message\0Music\01\0{0} - {1}\0Song Title\0Song Artist\0Song Album\0\0 ``` ## With MachineGuid *Only in [MSNP13](../versions/msnp13.md).* ### Blank status ``` S: UUX anotheruser@hotmail.com 118 {0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ### With PSM ``` S: UUX anotheruser@hotmail.com 140 example status message{0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ### With playing media ``` S: UUX anotheruser@hotmail.com 202 example status message\0Music\01\0{0} - {1}\0Song Title\0Song Artist\0Song Album\0\0{0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ## With Network IDs *Since [MSNP14](../versions/msnp14.md).* ### Blank status ``` S: UUX anotheruser@hotmail.com 1 118 {0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ### With PSM ``` S: UUX anotheruser@hotmail.com 1 140 example status message{0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ### With playing media ``` S: UUX anotheruser@hotmail.com 1 202 example status message\0Music\01\0{0} - {1}\0Song Title\0Song Artist\0Song Album\0\0{0061D708-CD9B-4D56-B64B-FFFAA92FF344} ``` ## Invalid context *Inherited from being an unimplemented command.* ``` C: UBX 1 0 ``` Server disconnects client. # Known changes * [MSNP13](../versions/msnp13.md): Added `` to payload. * [MSNP14](../versions/msnp14.md): Added a new parameter for the Network ID related to this update (parameter 2).