AUTHENTICATED
scope.
The current API user will be set as a community owner and will not be considered as a member.
To create a community, createCommunity
mutation should be executed.
Mutation has a single required incoming argument - data
that represents CommunityInput
object:
Parameter | Type | Description | Default |
---|---|---|---|
title | String | Required. Represents the community title. | — |
description | String | Required. A community description. Available HTML tags are: <br> , <p> , <h2> , <h3> , <h4> , <h5> , <h6> , <strong> , <em> , <u> , <s> , <sub> , <sup> , <a href> , <ul> , <ol start> , <li> . Any other tag will trimmed. | — |
visibility | CommunityVisibility | Required. A community visibility. | — |
postNotificationEnabled | Boolean | A flag that indicates that a notification about a new post is enabled. Note that the notification itself should be implemented on the client side, because Opigno Enterprise don’t have an access to the user emails in the API. | true |
imageBase64 | UploadedFileInput | The community image formatted as base64 string. | — |
Community
object. Detailed description and the full list of available properties can be found here.