3xx Redirection
This moved for good, and you should keep using the same kind of request when you switch to the new address.
Use 308 for permanent redirects when the redirected request must preserve the original method and body.
PUT https://api.example.test/api/v1/users/123308 Permanent Redirect
# Headers
Location: https://api.example.test/api/v2/users/123The client should update the endpoint and resend the same PUT to the new permanent URI.
POST https://api.example.test/hooks/incoming308 Permanent Redirect
# Headers
Location: https://api.example.test/webhooks/incomingThe sender should keep POST semantics while moving permanently to the new route.