Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/video-streaming \
--header 'Authorization: Bearer <token>'{
"enabled": true,
"moderation": {
"enabled": true,
"categories": [
{
"category": "pornography",
"flagThreshold": 0.5,
"terminateThreshold": 0.5
}
]
}
}Using for get network video streaming setting check configuration.
curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/video-streaming \
--header 'Authorization: Bearer <token>'{
"enabled": true,
"moderation": {
"enabled": true,
"categories": [
{
"category": "pornography",
"flagThreshold": 0.5,
"terminateThreshold": 0.5
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.