Periodically execute tasks (but only once per period, regardless of how many API servers are in the fleet). This method will be called every five minutes by a CloudWatch Rule. Whichever API server receives the request fires a node event which is consumed by modules that need to perform periodic tasks. As of writing, those tasks are:
POST /api/v1/cron/5 HTTP/1.1
Authorization: Signature ...
Content-Type: application/json
{
"foo": "bar"
}
----------------------------------------
HTTP/1.1 204 No Content
ETag: W/"a-bAsFyilMr4Ra1hIU5PyoyFRunpI"Authentication is required and restricted to system processes. Requests should be signed using a System key.
NONE
The request body is an arbitrary object for signature purposes only. Its contents are not inspected.
Successful responses are code 204. Error responses are standard.
NONE