Deletes a previously scheduled event based on the supplied uid parameter.

Request Fields

These are passed in at the top level of the request.

Key Type Description
uid string UID of a previously created scheduled event.
{
  "api_key" : "__PROJECT_API__KEY__",
  "uid": "__UID__"
}

Response 200 OK

{
  "response" : {
    "status" : "ok",
    "uid" : "__UID__"
  },
  "data" : {
    "uid": "__UID__",
    "deleted": true
  }
}

Response 404 Not Found

If the UID cannot be found for the given project the following is returned:

{
  "response": {
    "status": "not_found",
    "uid":"__UID__",
    "message": "Can not find scheduled event from the given UID"
  }
}