curl --request POST \
--url https://api.example.com/media/static/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"mediaID": 123
}'{
"success": true,
"data": "<unknown>"
}Delete a static media item (image). This does not remove it from the static media host, it just deletes it from the database.
curl --request POST \
--url https://api.example.com/media/static/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"mediaID": 123
}'{
"success": true,
"data": "<unknown>"
}