[DELETE] /notices/1,2,3

  • Violates REST API principles.

    • Semantic violation since 1,2,3 is not a resource.

  • It opens up to an arbitrary amount of IDs in the URI.

  • This is also undesired because the controller has to parse the IDs, increasing overhead in the handler.

Last updated