I'd like to stub an API that has the 'id' inside the payload, and I was hoping there's a nice way of forwarding PUTs on `/api/`: ```javascript { "id": "abcdef", ... } ``` to `/api/abcdef`, and have it persist?
I'd like to stub an API that has the 'id' inside the payload, and I was hoping there's a nice way of forwarding PUTs on
/api/:to
/api/abcdef, and have it persist?