User GuidesAPI ReferenceRelease Notes
Doc HomeHelp CenterLog In
API Reference

Create Attribute Configuration

Create an attribute configuration for a project

This endpoint allows configuration of machine learning details for a unified attribute. It cannot be used to update an already configured attribute. The POST body must specify the attribute using the attributeName field. For example, the post body:

{
  "attributeName": "myAttribute",
  "similarityFunction": "JACCARD",
  "enabledForMl": true,
  "tokenizer": "DEFAULT"
}

will specify the configuration for myAttribute. Note that any field not specified will revert to the default.

Response Fields

Returns an attribute configuration object describing the attribute configuration that has been created.

Language