Hello Mahesh,
Similarly you can send the caharatcter animation of a gameobject to server as like you send movement of gameobject in json string.
You can use below given code if you got it, may me help you.
Public static Animator anim;
string json = "{\\"CharacterAnimation\\":\\""+appwarp.anim.GetBool("Name of Animation")+"\\"}";
WarpClient.GetInstance().SendChat(json);
and you will start receiving messages from it.
if (eventObj.getSender () != appwarp.username){
appwarp.anim.SetBool ("Name of Animation",msg["CharacterAnimation"].AsBool);}
Thanks
Rampravesh Bhardwaj