I want to use Airtable API to upload images into attachment field. I have created public file storage (Minio), images have public access. I send URL of image to Airtable API in PATCH request.
Example PATCH body:
{
"fields": {
"Name": "rand...
Hi. Yes, id is part of URL. Here is the line copied from Postman request
PATCH https://api.airtable.com/v0/appXXXXXXXXX/CUSTOMERS/rec33333333tOtY
where record ID is rec33333333tOtY.
To check if my way is ok I created a free account on Cloudinary, upl...