Path parameters

  • watch_idstring Required

    The watch identifier.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • statusobject Required
      Hide status attributes Show status attributes object
      • actionsobject Required
        Hide actions attribute Show actions attribute object
      • last_checkedstring | number

        A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.

        One of:

        Time unit for milliseconds

      • last_met_conditionstring | number

        A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.

        One of:

        Time unit for milliseconds

      • stateobject Required
        Hide state attributes Show state attributes object
        • activeboolean Required
        • timestampstring | number Required

          A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.

          One of:

          Time unit for milliseconds

      • versionnumber Required
POST /_watcher/watch/{watch_id}/_ack
curl \
 --request POST 'http://api.example.com/_watcher/watch/{watch_id}/_ack' \
 --header "Authorization: $API_KEY"
Response examples (200)
A successful response from `POST _watcher/watch/my_watch/_ack`.
{
  "status": {
    "state": {
      "active": true,
      "timestamp": "2015-05-26T18:04:27.723Z"
    },
    "last_checked": "2015-05-26T18:04:27.753Z",
    "last_met_condition": "2015-05-26T18:04:27.763Z",
    "actions": {
      "test_index": {
        "ack" : {
          "timestamp": "2015-05-26T18:04:27.713Z",
          "state": "acked"
        },
        "last_execution" : {
          "timestamp": "2015-05-25T18:04:27.733Z",
          "successful": true
        },
        "last_successful_execution" : {
          "timestamp": "2015-05-25T18:04:27.773Z",
          "successful": true
        }
      }
    },
    "execution_state": "executed",
    "version": 2
  }
}