Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
information for a network setting
curl --request PUT \
--url https://apix.us.amity.co/api/v3/network-settings/moderation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"isWhitelistEnabled": true,
"isReportEnabled": true
}'
{
"isWhitelistEnabled": true,
"isReportEnabled": true
}
Update moderation configuration.
curl --request PUT \
--url https://apix.us.amity.co/api/v3/network-settings/moderation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"isWhitelistEnabled": true,
"isReportEnabled": true
}'
{
"isWhitelistEnabled": true,
"isReportEnabled": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
information for a network setting