I'm trying to script a POST request to the Covve API to parse business cards. Their technical support says "the API does not support passing the file via URL. It only accepts uploading the file itself directly."
Is there a way to do this through Airtable, using the expiring URL? This is the relevant part:
const myHeaders = new Headers();
myHeaders.append("Authorization", apiKey);
myHeaders.append("Content-Type", "multipart/form-data");
const formdata = new FormData();
formdata.append("file", photoURL);
const requestOptions = {
method: "POST",
headers: myHeaders,
body: formdata,
redirect: "follow"
};
let postResponse = await remoteFetchAsync(apiUrl, requestOptions);

