akopdev / bitrix24-python-rest

API wrapper for working with Bitrix24 REST API over webhooks.
https://pypi.org/project/bitrix24-rest/
MIT License
63 stars 25 forks source link

crm.activity.add problem on "START_TIME" and "STOP_TIME" #15

Closed ezero0 closed 3 years ago

ezero0 commented 3 years ago

the method call asks me for the START_TIME field.

The date is structured as "2021-04-05T14: 00: 00-00: 00" which is the way indicated by the REST api, however when executing it, the activity arrives but not its start date or its deadline.

Clarify that the date is formatted as str

akopdev commented 3 years ago

Can you provide code sample of request?

ezero0 commented 3 years ago

Can you provide code sample of request?

Thanks, look: start_time

How it looks:

image

What I am doing is by means of a cycle to go through each record of a dataframe and obtain a field that has a date, to this date I concatenate the letter "T" and add the "-00: 00" at the end, as you indicates rest api in your javascript example.

If you require more feedback, please tell me. I thank you in advance for your prompt response.

akopdev commented 3 years ago

According to bitrix documentation it should be a valid datetime (https://training.bitrix24.com/rest_help/crm/rest_activity/crm_activity_fields.php)

In most cases ISO 8601 should work for you, for example

2012-04-23T18:25:43.511Z

However you also can pass datetime as

23.04.2012 18:25:43

Personally I recommend to stick with iso 8601, that should be encoded from the box.

ezero0 commented 3 years ago

No, not work.

I have tried in various ways. datetime.datetime.now (). isoformat () sfrftime text string of the form "YYYY-MM-DDTHH-MM: SS"

And nothing works, it is curious that executing the webhook from the url in the browser does it. And the way I put the star_time in the url is: 2021-03-20T13: 00

ezero0 commented 3 years ago

SORRY!.

It works with isoformat (), I had a parenthesis that came from COMMUNICATIONS that the start_time fields did not work, really an apology and I thank you for all your attention supporting me. Your project is great.