UPDATE

Update an existing NLP setting by setting ID

UPDATE

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

Path Parameters

NameTypeDescription

apiKey

string

EyeLevel customer key

settingId

integer

NLP setting identifier

Request Body

NameTypeDescription

nlp

string

See request definition below

{
    "message": "OK"
}

Request

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

name

OPTIONAL - 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

{
    "message": "OK"
}

Last updated