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
}
}
}
Update Network setting for Semantics search.
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
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
information for a network setting
The body is of type object
.
Semantic Search configuration
The response is of type object
.