Used to force a retry on an instance of an event. The uid field is
the UUID generated for the particular event instance and can be obtained
via the list_scheduled_event_instances
endpoint or through the dashboard.
Request Fields
These are passed in at the top level of the request.
| Key | Type | Description | 
|---|---|---|
| uid | string | UID of the event instance. | 
| status | status | Status to update the request to. retryingto force a retry.Default: 250 | 
Request Example
{
  "api_key": "__PROJECT__API_KEY__",
  "uid": "__UID__",
  "status": "retrying"
}Response 200 OK
Upon successful update the following response is returned:
{
  "response": {
    "status": "ok",
    "uid": "__UID__"
  },
  "data": {
    "uid": "__UID__",
    "status": "retrying",
    "completed_at": "2018-12-18T19:22:00Z",
    "content": "..."
  }
}