Posts: 11
Threads: 5
Joined: Apr 2014
Reputation:
0
04-10-2014, 01:25 PM
(This post was last modified: 04-10-2014, 01:44 PM by LP041.)
Hello,
Could anyone help to give me some example use to update value or property of room by using mod_room().
I'm looking for your help!
Thanks in advance.
Hi, I think you have entered the chat online on the direct support but
if it is not answered yet, please let me know!
Regards
Posts: 45
Threads: 8
Joined: Apr 2013
Reputation:
0
For Wired related questions,
I strongly recommend to contact the development team (devel@). An example of mod_room is this one (python, but I attach also an xml):
>>> import xmlrpclib
>>> s= xmlrpclib.Server('https://wubook.net/xrws/')
>>> res, tok= s.get_token(user, pwd)
>>> s.mod_room(tok, lcode, 39802, 'f', 1, 100, 3, 'fer', 'nb') # 39802 is the room ID, 'f' is the new name, 1 is the occupancy, 100 the default price, 3 the default avail, 'fer' the shortname and 'nb' the default treatment.
That's the relative xml:
<methodCall>
<methodName>mod_room</methodName>
<params>
<param>
<value>
<string>9584970043.9180</string>
</value>
</param>
<param>
<value>
<int>1213394817</int>
</value>
</param>
<param>
<value>
<int>39802</int>
</value>
</param>
<param>
<value>
<string>f</string>
</value>
</param>
<param>
<value>
<int>1</int>
</value>
</param>
<param>
<value>
<int>100</int>
</value>
</param>
<param>
<value>
<int>3</int>
</value>
</param>
<param>
<value>
<string>fer</string>
</value>
</param>
<param>
<value>
<string>nb</string>
</value>
</param>
</params>
</methodCall>