Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method description

Create a new equalize setting for this instance.

Security

The calling user must have the EB_ROOT, EB_ADMIN, EB_APP, SEARCH_ADMIN or SEARCH_MANAGER role for this instance or the global requested instance.

...

URI Parameters

None

Request Data

The POST request must include a single object with the new equalize data. See Play Service models for details. All non-optional fields must be included in the request.

Code Block
languagejs
{
  "title": "My Custom Config",
  "fields": [
    {"field": "title", "boost": 80},
    {"field": "description", "boost": 25}
  ]
}

Response format and codes

HTTP codeDescription
201Equalize setting has been created
400Invalid parameters. Error response will include details
401The user does not meet the security criteria

...