3xx Redirection
You submitted something successfully. Now go fetch this other page to see the result.
Use 303 when the original request succeeded or was accepted, but the client should retrieve a different resource next with GET or HEAD.
POST https://api.example.test/users303 See Other
# Headers
Location: https://api.example.test/users/123The write request succeeds, then the client fetches the created user's page with GET.
POST https://api.example.test/exports303 See Other
# Headers
Location: https://api.example.test/exports/jobs/abcThe client is redirected to a safe retrieval URI rather than repeating the POST.
Everything worked perfectly! The server understood your request and sent back exactly what you asked for.
We got your request and we're working on it! We'll process it later, but don't wait around - check back later to see if it's done.
Go somewhere else for now, but don’t assume this new address is the permanent one.
Go to this other address for now, and send the exact same kind of request there.