I\'m trying to move a resource from /buckets/1 to /buckets/2 such that:
/buckets/1
/buckets/2
Create original resource:
PUT /bucket/1
Call server procedure that responsible for moving resources:
POST /bucket/1/move-to/2
Original resource path now should return Moved status code:
GET /bucket/1 HTTP 301
Resource now should be available on new path:
GET /bucket/2 HTTP 200