This is our configuration for the date/time, but all thats being returned is the id, and the due date is left null
this is the adalo database
how do we get pipedream to return the due date?
do you have the docs for Adalo handy? Taking a look myself
docs for what specifically?
general documentation?
Their API. I’m trying to see how they expect dueDate
to be received. It looks like we just send arbitrary data to the API when creating the record in Adalo, but typically they’ll expect the data to be passed in a specific, named field
checking right now
ah here we go: Collections - Adalo Resources
would you mind following those instructions to access the API docs?
will do
Once you’re there, select Add a collection record on the left, and take a screenshot of the docs that appear. Unfortunately it looks like they hide the docs behind a login.
Try this in the Data field:
{{
JSON.stringify({
"Due Date": steps.trigger.event.dueDate,
})
}}
if you have the assignment name from the Google Classroom event, you can pass this:
{{
JSON.stringify({
"Due Date": steps.trigger.event.dueDate,
"Assignment Name": steps.trigger.event.assignmentName
})
}}
(you’ll need to change the variable steps.trigger.event.assignmentName
to be whatever Google Classroom passes as the assignment name)
it worked!
thank you very much again
good to hear