Insert entry with id

I don’t believe currently we have a method for doing so (as we don’t send the ID in the create request to the database), generally it’s considered bad form to give the user control of the ID when doing a POST/Create request.

Most databases prefer to handle the ID generation especially in certain cluster environments (MariaDB being a good example, as it will do ID skips based on the node in the cluster to prevent ID conflicts)