Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
information for a network setting
Response
Semantic 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
}
}
}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
Semantic Search configuration
Show child attributes