How To run curl using kodular?

Have you tried this?

2 Likes

You have missed few lines thats why it didnt work,

use this

curl -v -X POST https://api.airtable.com/v0/appKlf84IvJN1UyL1/Search \
  -H "Authorization: Bearer yourkey" \
  -H "Content-Type: application/json" \
  --data '{
  "records": [
    {
      "fields": {
        "Title": "title1",
		"Table Name": "content1"
      }
    },
    {
      "fields": {
        "Title": "Title2",
		"Table Name": "Content2"
      }
    }
  ]
}'

I assure you will get the result. Please ask here, if it not works…

Update: Use this code in that extension, and let us know…

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.