curl --location --request POST '/api/film' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"title" : "test",
"description" : "test",
"image" : "spider_man.png",
"duration" : 1.30,
"minimum_age" : 16,
"genre" : "action",
"trailer_url" : "trailer.mp4"
}'
{}