On 2016-07-01 07:15, 'Simon Tapmeyer' via tryton wrote: > Hello, > > I would like to connect some external proccesses to tryton using the json > api. How can I figure out what parameters the methods derived with > "system.server.listMethods" need and what the methods exactly do?
You can use the call to system.methodHelp but system.methodSignature is not implemented because trytond is written in Python. Indeed most of the methods have always the same API for any Models and for special cases, the best is to read the code that implement it. -- Cédric Krier - B2CK SPRL Email/Jabber: [email protected] Tel: +32 472 54 46 59 Website: http://www.b2ck.com/ -- You received this message because you are subscribed to the Google Groups "tryton" group. To view this discussion on the web visit https://groups.google.com/d/msgid/tryton/20160702075224.GG4037%40tetsuo.
