Help Center API Support
Wasn't clear from skimming the docs if this is available.
zenpy.lib.api_objects.Topic Looks promising but I didn't see an example of it in action. Thanks
Hi @nealdav, the Help Centre API is not currently supported. In theory it would be straightforward to add support, it's just a matter of defining the endpoints and the objects. I won't have time to implement this for a while but I will mark this issue as an enhancement and return to it when I am able.
Sounds good and thank you for all of your great work on this client. It's proven to be very helpful.
I've merged initial support for the HelpCentre API into master. There are a couple of endpoints that still are not supported, but the majority are. I haven't written any docs yet, but you can see what is available here - https://github.com/facetoe/zenpy/blob/master/zenpy/lib/api.py#L1468.
Let me know if you have any issues!
I didn't see this until today. Will test, asap. Thank you!
really impressive stuff, thanks!
No worries :)
what is the syntax to create a section? I tried passing in category Id and the Section object: sect_obj = guide_obj.Section(name="Avionics", description="airborne", locale="en-us",manageable_by="staff", user_segment_id=360000258652L) zenpy_client.help_center.sections.create(360000377312L, sect_obj) but got: TypeError: create() takes exactly 2 arguments (3 given)
Thanks in advance!
HC support in there!