What languages provide SDKs for interacting with Genesys services?

649 views Asked by At

Genesys is a contact center platform that provides software for working with both hard and soft PBXs. There are also a number of ancillary services they provide to support the wider contact center business.

I'm aware of the .NET and Java SDKs that Genesys supply on a first hand basis. Is there SDK support for any other languages and, specifically, is there an official Python library for interacting with their services?

Alternatively, are there any 3rd party libraries that are designed to interact with Genesys services for Python?

4

There are 4 answers

1
Philippe F On BEST ANSWER

If they are providing a C library, you can use ctypes to interact with it.

1
user404 On

What do you need to interact with exacly? The GIS provides soap calls for a lot of functions.

0
QMP On

There is neither a native C nor a Python library. Best bet is to use GIS as suggested.

0
Chai Ang On

Just for completeness, one could use ironpython (http://ironpython.net/) with the .net libraries from genesys.

FWIW, I use the java libs with jython.

I was kind of expecting the scripts to be interchangeable (ie. between jython and ironpython) but unfortunately, the API differs in parts. ie. the parameters to some of the functions are different or in a different order.