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": "randomName",
"Images": [ --- Attachment field in Airtable
{
"url": "https://someUrl:9000/attachments/J/IMAGE/upload_tmpfile_1608952265638459111199810539557_01a.jpg"
}
]
}
}
Response looks good but image is never downloaded from Minio to Airtable API.
Minio use self signed cert and IP (no domain name).
What is wrong?