Given an existing set of records tied to a given unique identifier (a.k.a. slug), which is a portion of a key for multiple related records, what HTTP method is appropriate for updating such records to a new unique identifier?
OPTIONS, GET, PUT, POST, HEAD, DELETE, TRACE, and CONNECT all seem irrelevant to the functionality in question.
I'm reluctant to create a separate set of URIs that represent the "update slug/identifier" functionality when the URI schema is well established.
Thoughts? Opinions?