PUT
/
api
/
v3
/
network-settings
/
semantic-search
Update Semantics search configuration.
curl --request PUT \
  --url https://apix.us.amity.co/api/v3/network-settings/semantic-search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "postMinScore": 0.5,
  "communityMinScore": 0.5
}'
{
  "semanticSearch": {
    "post": {
      "enabled": false,
      "minScore": 123
    },
    "community": {
      "enabled": false,
      "minScore": 123
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

information for a network setting

The body is of type object.

Response

200
application/json

Semantic Search configuration

The response is of type object.