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, I’m using sleiman/airtable-php to integrate airtable with my website, the problem that I’m having right now is inserting a public url where my image is hosted to the attachment field of the table; this is the code:
$url = "<url-of-the-image>";
$...
Was able to find the answer after searching a little bit more, I needed to add the $attachment variable in one more array:
$url = "<url-of-the-image>";
$attachment = array('url' => "$url");
$update_details = array(
"ID Verification" => [$attachm...