curl --request PUT \
--url https://apix.us.amity.co/api/v3/network-settings/public-users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicUserVisitorEnabled": true,
"publicUserBotEnabled": true,
"publicUserSecure": true
}
'{
"visitorEnabled": true,
"botEnabled": true,
"secure": true
}Update public users configuration
curl --request PUT \
--url https://apix.us.amity.co/api/v3/network-settings/public-users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicUserVisitorEnabled": true,
"publicUserBotEnabled": true,
"publicUserSecure": true
}
'{
"visitorEnabled": true,
"botEnabled": true,
"secure": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Information of public users to be updated.