bitrix24-python-rest icon indicating copy to clipboard operation
bitrix24-python-rest copied to clipboard

API wrapper for working with Bitrix24 REST API over webhooks.

Results 7 bitrix24-python-rest issues
Sort by recently updated
recently updated
newest added

edit prepare_params method

Refactor code and add some call variants: callMethodIter - return generator to iterate call results, callMethodList - fast fetch list data (recomended for large datasets). Backward compatible.

https://github.com/akopkesheshyan/bitrix24-python-rest/blob/master/bitrix24/bitrix24.py#L87 Let's say I'm calling `crm.deal.add`. `method.rsplit('.', 1)[0]` will compute to `crm.deal`. Looks like this is not breaking stuff, since Bitrix accepts GET requests even for methods like `crm.deal.add` and...

Hello! I use this type of code to change product rows in a deal: `bx24.callMethod( "crm.deal.productrows.set", id = 1, rows= [{"PRODUCT_ID": 3, "PRICE": 100.00, "QUANTITY": 4}, {"PRODUCT_ID": 3, "PRICE": 200.00,...

help wanted
question

Thanks for the project! This PR adds logging support using the loguru library (I probably should have used the logger from Python itself) and passing an aiohttp class instance. Passing...

Hello. I found a problem when using the 'timeman.close' method. Please help. If you use this method with 1 parameter like this: ``` from bitrix24 import Bitrix24 bx24 = Bitrix24('https://******/rest/17/******/')...