fabriquedoc/backend/upload_image.sh

9 lines
329 B
Bash
Raw Normal View History

2025-01-01 02:01:12 +00:00
curl -X POST --location "http://127.0.0.1:8080/images/" \
2024-12-31 22:00:07 +00:00
-H "Accept: application/json" \
-H "Content-Type: multipart/form-data; boundary=boundary" \
-F "file=@logo-case-cocher.png"
2025-01-01 02:01:12 +00:00
curl -X GET --location "http://127.0.0.1:8080/images/"
2024-12-31 22:00:07 +00:00
2025-01-01 02:01:12 +00:00
curl -X DELETE --location "http://127.0.0.1:8080/images/logo-case-cocher.png"