curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/social \
--header 'Authorization: Bearer <token>'
{
"enabled": true,
"userPrivacySetting": "public",
"membershipAcceptance": "automatic",
"isFollowWithRequestEnabled": false,
"isAllowEditPostWhenReviewingEnabled": true,
"disallowNonMemberInteractInCommunity": true,
"allowJoinPrivateCommunity": false,
"globalFeed": {
"showOnlyMyFeed": false,
"showMyPost": true,
"showEveryonePost": true,
"showCommunityPost": true,
"showFollowingPost": true,
"maxGlobalPinnedPost": 123
},
"story": {
"expiryTimeMinutes": 720,
"allowAllUserToCreateStory": false
}
}
Get social configuration.
curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/social \
--header 'Authorization: Bearer <token>'
{
"enabled": true,
"userPrivacySetting": "public",
"membershipAcceptance": "automatic",
"isFollowWithRequestEnabled": false,
"isAllowEditPostWhenReviewingEnabled": true,
"disallowNonMemberInteractInCommunity": true,
"allowJoinPrivateCommunity": false,
"globalFeed": {
"showOnlyMyFeed": false,
"showMyPost": true,
"showEveryonePost": true,
"showCommunityPost": true,
"showFollowingPost": true,
"maxGlobalPinnedPost": 123
},
"story": {
"expiryTimeMinutes": 720,
"allowAllUserToCreateStory": false
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Social configuration
The response is of type object
.