Issue with notify parameter not setting in the create_event API endpoint
-
Hello Jetpack CRM Team,
I’m reaching out to discuss an issue I’ve been encountering with the Jetpack CRM API when attempting to create an event (task) using the
create_event
endpoint.Description of the Problem:
Whenever I set the
notify
parameter to24
(intending to receive notifications 24 hours before the event), the API consistently returns the value-1
for thenotify
parameter, which, as per my understanding, means ‘never notify’.Here’s a snippet of the JSON payload I’ve been sending:
jsonCopy code
{ "title": "Follow-Up Samples", "customer": <CUSTOMER_ID>, "to": "10/06/2023 17:00:00", "from": "10/06/2023 16:00:00", "notify": 24, "complete": 0, "owner": 1 }
The response I get (truncated for clarity):
jsonCopy code
{ "title": "Follow-Up Samples", "customer": <CUSTOMER_ID>, "to": "10/06/2023 17:00:00", "from": "10/06/2023 16:00:00", "notify": -1, ... }
Additional Information:
- I’m using the latest version of the Jetpack CRM plugin.
- I’ve cross-checked the documentation and, according to it, the value
24
should be valid for thenotify
parameter.
Would you kindly provide some insight into this behavior? I’m curious to know if it’s a known issue or if there’s something I might be missing in my request.
Thank you for your attention to this matter, and I look forward to hearing back.
Warm regards,
Janik
- The topic ‘Issue with notify parameter not setting in the create_event API endpoint’ is closed to new replies.