Core
API v2.x
2

validate #

This API action is deprecated and should not be used. Instead, use document:validate.

Validates data against existing validation rules.

Messages are always valid if no validation rules are defined on the provided index and collection.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/<index>/<collection>/_validate
Method: POST
Body:
Copied to clipboard!
{
  // data to validate
}

Other protocols #

Copied to clipboard!
{
  "index": "<index>",
  "collection": "<collection>",
  "controller": "realtime",
  "action": "validate",
  "body": {
    // data to validate
  }
}

Arguments #

  • collection: collection name
  • index: index name

Body properties #

Data content to validate against validation rules.


Response #

Returns an object with the following properties:

  • errorMessages: the exhaustive list of violated validation rules. Present only if valid is false
  • valid: a boolean telling whether the provided pass all validation rules
Copied to clipboard!
{
  "status": 200,
  "error": null,
  "index": "<index>",
  "collection": "<collection>",
  "controller": "realtime",
  "action": "validate",
  "result": {
    "valid": true
  }
}