Imagine a system for requesting files are upload from a particular URL.
http://example.com/{accountId}/files
A POST is made to that endpoint to initiate the file transfer. But given that the file can be large, and the process may take a while the server returns a 202 response.
After some time a GET is performed to
http://example.com/{accountId}/files/{fileId}
If the returned status of that file is still pending then we want to tell the server to attempt the transfer again, as we consider it timed out.
What I am stumped by is what the appropriate REST endpoint/HTTP verb would be to trigger the server to reprocess that file.