I mean, can I just replace... - `DELETE /rest/v2/:domain/:user/mailbox/message/:uuid` with - `DELETE /rest/v2/:domain/:user/mailbox/message` and - `PUT /rest/v2/:domain/:user/mailbox/message/:uuid` with - `PUT /rest/v2/:domain/:user/mailbox/message` ...and send a JSON array consisting of a single `:uuid` ? Are there any side effects?
I mean, can I just replace...
DELETE /rest/v2/:domain/:user/mailbox/message/:uuidwithDELETE /rest/v2/:domain/:user/mailbox/messageand
PUT /rest/v2/:domain/:user/mailbox/message/:uuidwithPUT /rest/v2/:domain/:user/mailbox/message...and send a JSON array consisting of a single
:uuid?Are there any side effects?