Basically I have successfully setup a monday.com integration with Webhooks. Long story short, when a new item is posted on monday.com, an HTTP request is sent to a URL which is handled by a Google Cloud Function. This GCF parses the JSON passed in the request, and updates my table in Big Query.
However the issue is this:
Let us assume the following item is posted on the monday.com board: monday.com table entry screenshot
NOTE how the date is of the format Date-Time.
The JSON file (for the date-time field) that is being sent via the HTTP request is as such:
"date4":{
"date":"2020-05-22",
"icon":"None"
},
NOTE how the Time is not included in the data being sent, only the Date.
Also, I can assert that on the monday.com board, the field type is of Date-Time.
I would like to know if this is an issue with the monday.com API or whether I am simply doing something wrong. I could not find any related issues upon researching the problem.
Thanks all in advance!