API Help - How am i supposed to handle delete requests?

When i try to delete a serie with the api call (localhost:8989/api/series/delete), i get:
{
message: “MethodNotAllowed”
}

returned, i tried to give the id as parameter and with the body aswell. But always the same result.

Hopefully someone can help me

You need to issue a DELETE (not GET/POST/PUT) request to http://localhost:8989/api/series/{id} where {id} is the series ID.

I moved 2 posts to a new topic: API - Unauthorized