I am trying to make a POST request to API through Airflow using BashOperator.
I tried a cURL to upload a file into API.
When I tested it on Postman it works because the file is in my local filesystem(used Select file option on body tab), but in Airflow the file is S3 storage.
Is there any possibility to load files directly from S3?
I already tried to fill the field --form file=@'s3 path' but it didn't work.