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.
Hi there!
I am building a RASA chat bot in which one of the custom actions is writing user input to a airtable via REST api. Everything works fine locally but when i host the bot on okteto cloud using docker, i am getting connection refused error. I...
Hi!
I am trying to write data to a airtable from Rasa chatbot. But when i run the code, it returns me a 422 Client Error: Unprocessable Entity for url: https://api.airtable.com/v0/<base ID/<table_name> error.
load_dotenv()
airtable_api_key = os.gete...
James_Timmins:
json.dumps(data)
Hi James!
Thank you for your reply. I have solved the issue. The problem was that some of my values were digits. So i needed to set the field type to number in the airtable - trivial and silly mistake which i ov...