CREATE

Create a new NLP setting that will be associated with the customer API key

CREATE

POST https://api.eyelevel.ai/v1/partner/nlp/setting/:apiKey

Path Parameters

NameTypeDescription

apiKey

string

EyeLevel customer key

Request Body

NameTypeDescription

nlp

object

See request definition below

{
    "nlp": {
        "setting": {
            "settingId": INTEGER IDENTIFIER
        }
    }
}

Request

{
    "nlp": {
        "name": STRING,
        "categoryIds": [
            INTEGER IDENTIFIER
        ]
    }
}

name

REQUIRED - String

Validation: 80 character limit

The human readable name for the NLP setting.

categoryIds

OPTIONAL - Array

Validation: An array of unique NLP category identifiers

Response

{
    "nlp": {
        "setting": {
            "settingId": INTEGER IDENTIFIER
        }
    }
}

settingId

The unique identifier for the NLP setting.

Last updated