Official Plugins (Kuzzle v2.x)
Scheduler v1.x
2

This plugin is part of the Kuzzle Enterprise Plan. If you are interested, please contact us.

StatusContent #

Copied to clipboard!
{
  /**
   * Scheduled task ID
   */
  id: string;

  /**
   * Timestamp of the execution
   */
  executedAt: number;

  /**
   * Node that execute the task
   */
  node: string;

  /**
   * Task action error
   */
  error: ResponseErrorPayload

  /**
   * Task action result
   */
  result: JSONObject;
}