The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I’m hoping someone has run into this before and can help me out. I’m sure I just have a syntax error somewhere or something equally silly.
I’m using jQuery AJAX (I have to, I will explain why if anyone asks).
I am able to retrieve, post, and patch da...
I think I have insight into the problem, and it is definitely me.
I use a live server through Visual Studio Code or I serve through my file system. The students are very new to JS/jQuery, so I haven’t implemented any npm/webpack stuff. This is all pr...
@openside
Blockquote Hmm, your code looks correct, and I can assure you it does work. What happens if you use a 1 or 0 instead of true/false?
Same thing.
That’s cool you’re teaching Airtable in class. You should join a podcast on BuiltOnAir :slig...
@Giovanni_Briggs
I was using Postman to test and “true” doesn’t work where true does. For AJAX, can you try stringifying data? typecast shouldn’t be necessary in this case.
Thanks for messing with it. Wrapping the fields in JSON.stringify gives...
I also tried to add typecast true and that gets me the following error:
{"error":{"type":"INVALID_REQUEST_UNKNOWN","message":"Invalid request: parameter validation failed. Check your request data."}}
Here is the code with that typecast property set ...
@Giovanni_Briggs
You are passing the string “true” not the boolean value true . Remove the quotes from true in your payload and you should be good to go!
Unfortunately that is not the case, as I noted I have tried to pass it with and without. I di...