I’m pretty sure a PATCH requires that you identify the record ID, right?
I’m pretty sure a PATCH requires that you identify the record ID, right?
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, uploaded the image there and copied the image URL. In Postman I set ‘url’ to the Cloudinary image URL. Sent PATCH request. Image was downloaded by Airtable from Cloudinary URL and was visible in the Airtable web app. Also Airtbale API GET returns full attachment object.
New request with Cloudinary image URL:
{
"fields": {
"Name": "randomName",
"Images": g --- Attachment field in Airtable
{
"url": "https://res.cloudinary.com/AAAAA/image/upload/v4646464664/01a_q2w9ph.jpg"
}
]
}
}
I think I have narrowed the problem. Can we use self signed cert with public attachment storages and is there any airtable config option to add exceptions for self signed certs?
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, uploaded the image there and copied the image URL. In Postman I set ‘url’ to the Cloudinary image URL. Sent PATCH request. Image was downloaded by Airtable from Cloudinary URL and was visible in the Airtable web app. Also Airtbale API GET returns full attachment object.
New request with Cloudinary image URL:
{
"fields": {
"Name": "randomName",
"Images": s --- Attachment field in Airtable
{
"url": "https://res.cloudinary.com/AAAAA/image/upload/v4646464664/01a_q2w9ph.jpg"
}
]
}
}
I think I have narrowed the problem. Can we use self signed cert with public attachment storages and is there any airtable config option to add exceptions for self signed certs?
I don’t believe this is possible - only fully public URLs are supported, but you should check with Airtable support.