
Taal 🇳🇱 Nederlands
Aan de slag
Documentatie
Aggregatie
Auditlogs
Authenticatie
Blokkeren vanaf opmerking
Geblokkeerde reacties controleren
Reacties
Reacties voor gebruiker
Domeinconfiguraties
E-mailsjablonen
Gebeurtenislogboek
Feedberichten
Opmerking melden
GIFs
Hashtags
Moderatie
Moderatoren
Aantal meldingen
Meldingen
Pagina-reacties
Pagina's
Openstaande webhook-gebeurtenissen
Vraagconfiguraties
Vraagresultaten
Aggregatie van vraagresultaten
SSO-gebruikers
Abonnementen
Dagelijks gebruik per tenant
Tenantpakketten
Tenantgebruikers
Tenants
Tickets
Vertalingen
Afbeelding uploaden
Voortgang gebruikersbadges
Gebruikersbadges
Gebruikersmeldingen
Gebruikersaanwezigheidsstatus
Zoeken naar gebruikers
Gebruikers
Stemmen
FastComments Java SDK
Dit is de officiële Java SDK voor FastComments.
Officiële Java SDK voor de FastComments API
Repository
Installatie 
Maven
Voeg de Repsy-repository toe aan de POM van je project:
<repositories>
<repository>
<id>repsy</id>
<name>FastComments Maven Repository on Repsy</name>
<url>https://repo.repsy.io/mvn/winrid/fastcomments</url>
</repository>
</repositories>
Voeg daarna de benodigde dependencies toe:
<dependencies>
<!-- API Client -->
<dependency>
<groupId>com.fastcomments</groupId>
<artifactId>client</artifactId>
<version>2.0.0</version>
</dependency>
<!-- Core Library (includes SSO) -->
<dependency>
<groupId>com.fastcomments</groupId>
<artifactId>core</artifactId>
<version>2.0.0</version>
</dependency>
<!-- PubSub Library (for live events) -->
<dependency>
<groupId>com.fastcomments</groupId>
<artifactId>pubsub</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
Gradle
Voeg de Repsy-repository toe aan je build.gradle-bestand:
repositories {
mavenCentral()
maven {
url "https://repo.repsy.io/mvn/winrid/fastcomments"
}
}
dependencies {
// API Client
implementation "com.fastcomments:client:2.0.0"
// Core Library (includes SSO)
implementation "com.fastcomments:core:2.0.0"
// PubSub Library (for live events)
implementation "com.fastcomments:pubsub:2.0.0"
}
Library Contents
Deze bibliotheek bevat drie modules. De gegenereerde API-client, de core Java-bibliotheek die handgeschreven hulpprogramma's bevat om het werken met de API te vergemakkelijken, en de pubsub-module die een bibliotheek is voor het abonneren op wijzigingsfeeds.
Public vs Secured APIs
Voor de API-client zijn er drie klassen, DefaultApi, PublicApi en ModerationApi. De DefaultApi bevat methoden die je API-sleutel vereisen, en PublicApi bevat methoden die direct vanuit een browser/mobiel apparaat/etc kunnen worden aangeroepen zonder authenticatie.
De ModerationApi verzorgt het moderator-dashboard. Het bevat methoden voor commentaarmoderatie (lijst, aantal, zoeken, logboeken en export), moderatie-acties (verwijderen/terugzetten, markeren, review/spam/goedkeuringsstatus instellen, stemmen en draad heropenen/sluiten), bans (verbieden van commentaar, een ban ongedaan maken, pre-ban-samenvattingen, ban-status en voorkeuren, en tellingen van gebande gebruikers), en badges & vertrouwen (een badge toekennen/verwijderen, handmatige badges, trust factor ophalen/instellen en interne gebruikersprofiel). Elke ModerationApi-methode accepteert een sso-parameter zodat de oproep namens een via SSO geauthenticeerde moderator kan worden uitgevoerd.
Snelstart 
Gebruik van geauthenticeerde API's (DefaultApi)
Belangrijk: Je moet je API-sleutel instellen op de ApiClient voordat je geauthenticeerde verzoeken doet. Als je dat niet doet, zullen verzoeken mislukken met een 401-fout.
import com.fastcomments.invoker.ApiClient;
import com.fastcomments.invoker.ApiException;
import com.fastcomments.api.DefaultApi;
import com.fastcomments.model.*;
public class Example {
public static void main(String[] args) {
// Create and configure the API client
ApiClient apiClient = new ApiClient();
// REQUIRED: Set your API key (get this from your FastComments dashboard)
apiClient.setApiKey("YOUR_API_KEY_HERE");
// Create the API instance with the configured client
DefaultApi api = new DefaultApi(apiClient);
// Now you can make authenticated API calls
try {
// Example: Add an SSO user
CreateAPISSOUserData userData = new CreateAPISSOUserData();
userData.setId("user-123");
userData.setEmail("user@example.com");
userData.setDisplayName("John Doe");
AddSSOUserAPIResponse response = api.addSSOUser("YOUR_TENANT_ID", userData)
.execute();
System.out.println("User created: " + response);
} catch (ApiException e) {
System.err.println("Error: " + e.getResponseBody());
// Common errors:
// - 401: API key is missing or invalid
// - 400: Request validation failed
}
}
}
Gebruik van publieke API's (PublicApi)
Publieke endpoints vereisen geen authenticatie:
import com.fastcomments.api.PublicApi;
import com.fastcomments.invoker.ApiException;
PublicApi publicApi = new PublicApi();
try {
var response = publicApi.getCommentsPublic("YOUR_TENANT_ID", "page-url-id")
.execute();
System.out.println(response);
} catch (ApiException e) {
e.printStackTrace();
}
Gebruik van moderatie-API's (ModerationApi)
De ModerationApi stuurt het moderator-dashboard aan. Elke methode accepteert een sso-parameter die de SSO-geauthenticeerde moderator identificeert namens wie het verzoek wordt gedaan:
import com.fastcomments.api.ModerationApi;
import com.fastcomments.invoker.ApiException;
import com.fastcomments.model.*;
ModerationApi moderationApi = new ModerationApi();
try {
// List comments awaiting moderation
ModerationAPIGetCommentsResponse response = moderationApi.getApiComments()
.sso("YOUR_SSO_TOKEN")
.execute();
System.out.println(response);
} catch (ApiException e) {
e.printStackTrace();
}
Veelvoorkomende problemen
- 401 "missing-api-key" error: Zorg ervoor dat je
apiClient.setApiKey("YOUR_KEY")aanroept voordat je de DefaultApi-instantie aanmaakt. - Verkeerde API-klasse: Gebruik
DefaultApivoor server-side geauthenticeerde verzoeken,PublicApivoor client-side/publieke verzoeken. - Null API key: De SDK zal authenticatie stilzwijgend overslaan als de API-sleutel null is, wat leidt tot 401-fouten.
Notities 
Broadcast-id's
Je zult zien dat je in sommige API-aanroepen een broadcastId moet meegeven. Wanneer je events ontvangt, krijg je deze ID terug, zodat je het event kunt negeren als je van plan bent wijzigingen optimistisch aan de client toe te passen (wat je waarschijnlijk zult willen doen omdat dit de beste gebruikerservaring biedt). Geef hier een UUID mee. De ID moet uniek genoeg zijn om niet twee keer in een browsersessie voor te komen.
Aggregatie 
Agregeert documenten door ze te groeperen (als groupBy is opgegeven) en meerdere bewerkingen toe te passen. Verschillende bewerkingen (bijv. sum, countDistinct, avg, enz.) worden ondersteund.
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| parentTenantId | string | query | Nee | |
| includeStats | boolean | query | Nee |
Antwoord
Retourneert: AggregateResponse
Voorbeeld

Auditlogs ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| limit | number | query | Nee | |
| skip | number | query | Nee | |
| order | string | query | Nee | |
| after | number | query | Nee | |
| before | number | query | Nee |
Respons
Geeft terug: GetAuditLogsResponse
Voorbeeld

Uitloggen (publiek) 
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Blokkeren vanaf opmerking (publiek) 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: BlockSuccess
Voorbeeld

Opmerking deblokkeren (publiek) 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: UnblockSuccess
Voorbeeld

Gecontroleerde geblokkeerde reacties 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentIds | string | query | Ja | Een door komma's gescheiden lijst met commentaar-id's. |
| sso | string | query | Nee |
Respons
Retourneert: CheckBlockedCommentsResponse
Voorbeeld

Gebruiker blokkeren bij opmerking 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Antwoord
Retourneert: BlockSuccess
Voorbeeld

Reactie aanmaken (publiek) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| broadcastId | string | query | Ja | |
| sessionId | string | query | Nee | |
| sso | string | query | Nee |
Response
Geeft terug: SaveCommentsResponseWithPresence
Voorbeeld

Reactie verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| contextUserId | string | query | Nee | |
| isLive | boolean | query | Nee |
Antwoord
Retourneert: DeleteCommentResult
Voorbeeld

Reactie verwijderen (publiek) 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| editKey | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: PublicAPIDeleteCommentResponse
Voorbeeld

Reactiestem verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| voteId | string | path | Ja | |
| urlId | string | query | Ja | |
| broadcastId | string | query | Ja | |
| editKey | string | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: VoteDeleteResponse
Voorbeeld

Reactie melden 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Antwoord
Geeft terug: FlagCommentResponse
Voorbeeld

Reactie ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIGetCommentResponse
Voorbeeld

Reacties ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| page | integer | query | Nee | |
| limit | integer | query | Nee | |
| skip | integer | query | Nee | |
| asTree | boolean | query | Nee | |
| skipChildren | integer | query | Nee | |
| limitChildren | integer | query | Nee | |
| maxTreeDepth | integer | query | Nee | |
| urlId | string | query | Nee | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee | |
| contextUserId | string | query | Nee | |
| hashTag | string | query | Nee | |
| parentId | string | query | Nee | |
| direction | string | query | Nee | |
| fromDate | integer | query | Nee | |
| toDate | integer | query | Nee |
Response
Geeft terug: APIGetCommentsResponse
Voorbeeld

Reacties ophalen (publiek) 
req tenantId urlId
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| page | integer | query | No | |
| direction | string | query | No | |
| sso | string | query | No | |
| skip | integer | query | No | |
| skipChildren | integer | query | No | |
| limit | integer | query | No | |
| limitChildren | integer | query | No | |
| countChildren | boolean | query | No | |
| fetchPageForCommentId | string | query | No | |
| includeConfig | boolean | query | No | |
| countAll | boolean | query | No | |
| includei10n | boolean | query | No | |
| locale | string | query | No | |
| modules | string | query | No | |
| isCrawler | boolean | query | No | |
| includeNotificationCount | boolean | query | No | |
| asTree | boolean | query | No | |
| maxTreeDepth | integer | query | No | |
| useFullTranslationIds | boolean | query | No | |
| parentId | string | query | No | |
| searchText | string | query | No | |
| hashTags | array | query | No | |
| userId | string | query | No | |
| customConfigStr | string | query | No | |
| afterCommentId | string | query | No | |
| beforeCommentId | string | query | No |
Response
Retourneert: GetCommentsResponseWithPresencePublicComment
Voorbeeld

Reactietekst ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| editKey | string | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: PublicAPIGetCommentTextResponse
Voorbeeld

Gebruikersnamen van reactiestemmen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| dir | integer | query | Ja | |
| sso | string | query | Nee |
Respons
Geeft terug: GetCommentVoteUserNamesSuccessResponse
Voorbeeld

Reactie vergrendelen 
Parameters
| Naam | Type | Location | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| sso | string | query | Nee |
Respons
Returneert: APIEmptyResponse
Voorbeeld

Reactie vastzetten 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: ChangeCommentPinStatusResponse
Voorbeeld

Reactie opslaan 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| isLive | boolean | query | Nee | |
| doSpamCheck | boolean | query | Nee | |
| sendEmails | boolean | query | Nee | |
| populateNotifications | boolean | query | Nee |
Antwoord
Retourneert: APISaveCommentResponse
Voorbeeld

Reacties in bulk opslaan 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| isLive | boolean | query | No | |
| doSpamCheck | boolean | query | No | |
| sendEmails | boolean | query | No | |
| populateNotifications | boolean | query | No |
Response
Retourneert: SaveCommentsBulkResponse
Voorbeeld

Reactietekst instellen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| editKey | string | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: PublicAPISetCommentTextResponse
Voorbeeld

Gebruiker deblokkeren bij reactie 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Respons
Retourneert: UnblockSuccess
Voorbeeld

Reactie melding intrekken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Respons
Retourneert: FlagCommentResponse
Voorbeeld

Reactie ontgrendelen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Reactie ontpinnen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| broadcastId | string | query | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: ChangeCommentPinStatusResponse
Voorbeeld

Reactie bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| contextUserId | string | query | Nee | |
| doSpamCheck | boolean | query | Nee | |
| isLive | boolean | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Stem op reactie 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| commentId | string | path | Ja | |
| urlId | string | query | Ja | |
| broadcastId | string | query | Ja | |
| sessionId | string | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: VoteResponse
Voorbeeld

Reacties voor gebruiker ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| userId | string | query | Nee | |
| direction | string | query | Nee | |
| repliesToUserId | string | query | Nee | |
| page | number | query | Nee | |
| includei10n | boolean | query | Nee | |
| locale | string | query | Nee | |
| isCrawler | boolean | query | Nee |
Response
Geeft terug: GetCommentsForUserResponse
Voorbeeld

Domeinconfiguratie toevoegen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Retourneert: AddDomainConfigResponse
Voorbeeld

Domeinconfiguratie verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| domain | string | path | Yes |
Respons
Retourneert: DeleteDomainConfigResponse
Voorbeeld

Domeinconfiguratie ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| domain | string | path | Ja |
Antwoord
Retourneert: GetDomainConfigResponse
Voorbeeld

Domeinconfiguraties ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Omschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Retourneert: GetDomainConfigsResponse
Voorbeeld

Domeinconfiguratie gedeeltelijk bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| domainToUpdate | string | path | Ja |
Antwoord
Retourneert: PatchDomainConfigResponse
Voorbeeld

Domeinconfiguratie vervangen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| domainToUpdate | string | path | Yes |
Respons
Retourneert: PutDomainConfigResponse
Voorbeeld

E-mailsjabloon aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Antwoord
Retourneert: CreateEmailTemplateResponse
Voorbeeld

E-mailsjabloon verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Weergavefout e-mailsjabloon verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| errorId | string | path | Yes |
Response
Retourneert: APIEmptyResponse
Example

E-mailsjabloon ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Respons
Retourneert: GetEmailTemplateResponse
Voorbeeld

Definities e-mailsjablonen ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Response
Retourneert: GetEmailTemplateDefinitionsResponse
Voorbeeld

Weergavefouten e-mailsjablonen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| skip | number | query | Nee |
Respons
Retourneert: GetEmailTemplateRenderErrorsResponse
Voorbeeld

E-mailsjablonen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | number | query | Nee |
Response
Retourneert: GetEmailTemplatesResponse
Voorbeeld

E-mailsjabloon weergeven 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| locale | string | query | Nee |
Antwoord
Geeft terug: RenderEmailTemplateResponse
Voorbeeld

E-mailsjabloon bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Gebeurtenislogboek ophalen 
req tenantId urlId userIdWS
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| userIdWS | string | query | Ja | |
| startTime | integer | query | Ja | |
| endTime | integer | query | Nee |
Antwoord
Retourneert: GetEventLogResponse
Voorbeeld

Globaal gebeurtenislogboek ophalen 
req tenantId urlId userIdWS
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| userIdWS | string | query | Ja | |
| startTime | integer | query | Ja | |
| endTime | integer | query | Nee |
Respons
Retourneert: GetEventLogResponse
Voorbeeld

Feedbericht aanmaken 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| broadcastId | string | query | Nee | |
| isLive | boolean | query | Nee | |
| doSpamCheck | boolean | query | Nee | |
| skipDupCheck | boolean | query | Nee |
Respons
Retourneert: CreateFeedPostsResponse
Voorbeeld

Feedbericht aanmaken (publiek) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: CreateFeedPostResponse
Voorbeeld

Feedbericht verwijderen (publiek) 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| postId | string | path | Ja | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: DeleteFeedPostPublicResponse
Voorbeeld

Feedberichten ophalen 
req tenantId afterId
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| afterId | string | query | Nee | |
| limit | integer | query | Nee | |
| tags | array | query | Nee |
Antwoord
Geeft terug: GetFeedPostsResponse
Voorbeeld

Feedberichten ophalen (publiek) 
req tenantId afterId
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| afterId | string | query | Nee | |
| limit | integer | query | Nee | |
| tags | array | query | Nee | |
| sso | string | query | Nee | |
| isCrawler | boolean | query | Nee | |
| includeUserInfo | boolean | query | Nee |
Antwoord
Retourneert: PublicFeedPostsResponse
Voorbeeld

Statistieken feedberichten ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| postIds | array | query | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: FeedPostsStatsResponse
Voorbeeld

Gebruikersreacties ophalen (publiek) 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| postIds | array | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: UserReactsResponse
Voorbeeld

Reageren op feedbericht (publiek) 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| postId | string | path | Ja | |
| isUndo | boolean | query | Nee | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: ReactFeedPostResponse
Voorbeeld

Feedbericht bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Response
Retourneert: APIEmptyResponse
Voorbeeld

Feedbericht bijwerken (publiek) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| postId | string | path | Ja | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: CreateFeedPostResponse
Voorbeeld

Reactie melden (publiek) 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | path | Ja | |
| isFlagged | boolean | query | Ja | |
| sso | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Grote GIF ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| largeInternalURLSanitized | string | query | Ja |
Respons
Retourneert: GifGetLargeResponse
Voorbeeld

GIF's zoeken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| search | string | query | Ja | |
| locale | string | query | Nee | |
| rating | string | query | Nee | |
| page | number | query | Nee |
Antwoord
Retourneert: GetGifsSearchResponse
Voorbeeld

Trending GIF's ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| locale | string | query | Nee | |
| rating | string | query | Nee | |
| page | number | query | Nee |
Respons
Retourneert: GetGifsTrendingResponse
Voorbeeld

Hashtag toevoegen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Nee |
Antwoord
Geeft terug: CreateHashTagResponse
Voorbeeld

Hashtags in bulk toevoegen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Nee |
Response
Retourneert: BulkCreateHashTagsResponse
Voorbeeld

Hashtag verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tag | string | path | Ja | |
| tenantId | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Hashtags ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| page | number | query | Nee |
Antwoord
Retourneert: GetHashTagsResponse
Voorbeeld

Hashtag gedeeltelijk bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tag | string | path | Ja | |
| tenantId | string | query | Nee |
Antwoord
Retourneert: UpdateHashTagResponse
Voorbeeld

Moderatiestem verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| voteId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: VoteDeleteResponse
Voorbeeld

API-reacties ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| page | number | query | Nee | |
| count | number | query | Nee | |
| text-search | string | query | Nee | |
| byIPFromComment | string | query | Nee | |
| filters | string | query | Nee | |
| searchFilters | string | query | Nee | |
| sorts | string | query | Nee | |
| demo | boolean | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: ModerationAPIGetCommentsResponse
Voorbeeld

API-exportstatus ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| batchJobId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: ModerationExportStatusResponse
Voorbeeld

API-IDs ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| text-search | string | query | No | |
| byIPFromComment | string | query | No | |
| filters | string | query | No | |
| searchFilters | string | query | No | |
| afterId | string | query | No | |
| demo | boolean | query | No | |
| sso | string | query | No |
Antwoord
Geeft terug: ModerationAPIGetCommentIdsResponse
Voorbeeld

Gebannen gebruikers van reactie ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: GetBannedUsersFromCommentResponse
Voorbeeld

Banstatus van reactie ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: GetCommentBanStatusResponse
Voorbeeld

Reactiekinderen ophalen 
Parameters
| Naam | Type | Location | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: ModerationAPIChildCommentsResponse
Voorbeeld

Aantal ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| text-search | string | query | Nee | |
| byIPFromComment | string | query | Nee | |
| filter | string | query | Nee | |
| searchFilters | string | query | Nee | |
| demo | boolean | query | Nee | |
| sso | string | query | Nee |
Respons
Geeft terug: ModerationAPICountCommentsResponse
Voorbeeld

Aantallen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| sso | string | query | Nee |
Antwoord
Geeft terug: GetBannedUsersCountResponse
Voorbeeld

Logboeken ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Response
Retourneert: ModerationAPIGetLogsResponse
Voorbeeld

Handmatige badges ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| sso | string | query | Nee |
Respons
Retourneert: GetTenantManualBadgesResponse
Voorbeeld

Handmatige badges voor gebruiker ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| badgesUserId | string | query | Nee | |
| commentId | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: GetUserManualBadgesResponse
Voorbeeld

Moderatiereactie ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| includeEmail | boolean | query | Nee | |
| includeIP | boolean | query | Nee | |
| sso | string | query | Nee |
Reactie
Retourneert: ModerationAPICommentResponse
Voorbeeld

Tekst moderatiereactie ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Antwoord
Geeft terug: GetCommentTextResponse
Voorbeeld

Samenvatting vóór verbanning ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| includeByUserIdAndEmail | boolean | query | Nee | |
| includeByIP | boolean | query | Nee | |
| includeByEmailDomain | boolean | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: PreBanSummary
Voorbeeld

Samenvatting zoekreacties ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| value | string | query | Nee | |
| filters | string | query | Nee | |
| searchFilters | string | query | Nee | |
| sso | string | query | Nee |
Respons
Geeft terug: ModerationCommentSearchResponse
Voorbeeld

Zoekpagina's ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| value | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: ModerationPageSearchResponse
Voorbeeld

Zoeksites ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| value | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: ModerationSiteSearchResponse
Voorbeeld

Zoeksuggesties ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| text-search | string | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: ModerationSuggestResponse
Voorbeeld

Zoekgebruikers ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| value | string | query | Nee | |
| sso | string | query | Nee |
Response
Geeft terug: ModerationUserSearchResponse
Voorbeeld

Vertrouwensfactor ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| userId | string | query | No | |
| sso | string | query | No |
Response
Retourneert: GetUserTrustFactorResponse
Example

Voorkeur gebruikersban ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| sso | string | query | Nee |
Respons
Retourneert: APIModerateGetUserBanPreferencesResponse
Voorbeeld

Interne gebruikersprofiel ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: GetUserInternalProfileResponse
Voorbeeld

Stemmen op reactie aanpassen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: AdjustVotesResponse
Voorbeeld

API-export starten 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| text-search | string | query | No | |
| byIPFromComment | string | query | No | |
| filters | string | query | No | |
| searchFilters | string | query | No | |
| sorts | string | query | No | |
| sso | string | query | No |
Antwoord
Retourneert: ModerationExportResponse
Voorbeeld

Gebruiker verbannen vanaf reactie 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| banEmail | boolean | query | Nee | |
| banEmailDomain | boolean | query | Nee | |
| banIP | boolean | query | Nee | |
| deleteAllUsersComments | boolean | query | Nee | |
| bannedUntil | string | query | Nee | |
| isShadowBan | boolean | query | Nee | |
| updateId | string | query | Nee | |
| banReason | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: BanUserFromCommentResult
Voorbeeld

Ban gebruiker ongedaan maken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| sso | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Bulk pre-ban samenvatting 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| includeByUserIdAndEmail | boolean | query | No | |
| includeByIP | boolean | query | No | |
| includeByEmailDomain | boolean | query | No | |
| sso | string | query | No |
Respons
Geeft terug: BulkPreBanSummary
Voorbeeld

Reacties ophalen per ID 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| sso | string | query | Nee |
Antwoord
Retourneert: ModerationAPIChildCommentsResponse
Voorbeeld

Reactie melden (POST) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Yes | |
| sso | string | query | No |
Respons
Geeft terug: APIEmptyResponse
Voorbeeld

Reactie verwijderen (POST) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Antwoord
Retourneert: PostRemoveCommentResponse
Voorbeeld

Verwijderde reactie herstellen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Geeft terug: APIEmptyResponse
Voorbeeld

Goedkeuringsstatus reactie instellen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| approved | boolean | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: SetCommentApprovedResponse
Voorbeeld

Reviewstatus reactie instellen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| reviewed | boolean | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Spamstatus reactie instellen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| spam | boolean | query | Nee | |
| permNotSpam | boolean | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Reactietekst instellen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: SetCommentTextResponse
Voorbeeld

Reactie melding intrekken (POST) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| sso | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Stem plaatsen (POST) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| commentId | string | path | Ja | |
| direction | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: VoteResponse
Voorbeeld

Badge toekennen (PUT) 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| badgeId | string | query | Ja | |
| userId | string | query | Nee | |
| commentId | string | query | Nee | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Antwoord
Retourneert: AwardUserBadgeResponse
Voorbeeld

Thread sluiten (PUT) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| urlId | string | query | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Badge verwijderen (PUT) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| badgeId | string | query | Ja | |
| userId | string | query | Nee | |
| commentId | string | query | Nee | |
| broadcastId | string | query | Nee | |
| sso | string | query | Nee |
Response
Retourneert: RemoveUserBadgeResponse
Voorbeeld

Thread heropenen (PUT) 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| urlId | string | query | Ja | |
| sso | string | query | Nee |
Response
Retourneert: APIEmptyResponse
Voorbeeld

Vertrouwensfactor instellen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| userId | string | query | Nee | |
| trustFactor | string | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: SetUserTrustFactorResponse
Voorbeeld

Moderator aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Response
Retourneert: CreateModeratorResponse
Voorbeeld

Moderator verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| sendEmail | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Moderator ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: GetModeratorResponse
Voorbeeld

Moderatoren ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | number | query | Nee |
Respons
Retourneert: GetModeratorsResponse
Voorbeeld

Uitnodiging verzenden 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| fromName | string | query | Ja |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Moderator bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Meldingtelling verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Gecachte meldingtelling ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Geeft terug: GetCachedNotificationCountResponse
Voorbeeld

Meldingtelling ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| userId | string | query | Nee | |
| urlId | string | query | Nee | |
| fromCommentId | string | query | Nee | |
| viewed | boolean | query | Nee | |
| type | string | query | Nee |
Response
Retourneert: GetNotificationCountResponse
Example

Meldingen ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| urlId | string | query | No | |
| fromCommentId | string | query | No | |
| viewed | boolean | query | No | |
| type | string | query | No | |
| skip | number | query | No |
Respons
Retourneert: GetNotificationsResponse
Voorbeeld

Melding bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Pagina-reactie V1 aanmaken 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| title | string | query | No |
Response
Retourneert: CreateV1PageReact
Example

Pagina-reactie V2 aanmaken 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| id | string | query | Ja | |
| title | string | query | Nee |
Response
Geeft terug: CreateV1PageReact
Voorbeeld

Pagina-reactie V1 verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes |
Antwoord
Retourneert: CreateV1PageReact
Voorbeeld

Pagina-reactie V2 verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| id | string | query | Ja |
Respons
Retourneert: CreateV1PageReact
Voorbeeld

Pagina-likes V1 ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes |
Response
Retourneert: GetV1PageLikes
Voorbeeld

Pagina-reacties V2 ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja |
Antwoord
Retourneert: GetV2PageReacts
Voorbeeld

Gebruikers pagina-reacties V2 ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| id | string | query | Yes |
Antwoord
Geeft terug: GetV2PageReactUsersResponse
Voorbeeld

Pagina toevoegen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Antwoord
Retourneert: AddPageAPIResponse
Voorbeeld

Pagina verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: DeletePageAPIResponse
Voorbeeld

Offline gebruikers ophalen 
Vorige commentatoren op de pagina die NIET momenteel online zijn. Gesorteerd op displayName. Gebruik dit nadat u /users/online hebt uitgeput om een "Leden" sectie weer te geven. Cursor-paginering op commenterName: de server loopt de gedeeltelijke index {tenantId, urlId, commenterName} vanaf afterName vooruit via $gt, zonder $skip-kosten.
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | Pagina-URL-identificator (schoongemaakt aan de serverzijde). |
| afterName | string | query | No | Cursor: geef nextAfterName door van het vorige antwoord. |
| afterUserId | string | query | No | Cursor tiebreaker: geef nextAfterUserId door van het vorige antwoord. Vereist wanneer afterName is ingesteld zodat naamgelijkheden geen vermeldingen wegvallen. |
Antwoord
Retourneert: PageUsersOfflineResponse
Voorbeeld

Online gebruikers ophalen 
Momenteel online kijkers van een pagina: mensen wiens websocket-sessie op dit moment op die pagina geabonneerd is. Geeft anonCount + totalCount terug (abonnees in de hele ruimte, inclusief anonieme kijkers die we niet afzonderlijk opsommen).
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | Pagina-URL-identificator (schoongemaakt aan de serverzijde). |
| afterName | string | query | Nee | Cursor: geef nextAfterName uit de vorige respons door. |
| afterUserId | string | query | Nee | Cursor tiebreaker: geef nextAfterUserId uit de vorige respons door. Verplicht wanneer afterName is ingesteld zodat bij gelijke namen geen items verloren gaan. |
Respons
Geeft terug: PageUsersOnlineResponse
Voorbeeld

Pagina ophalen via URL-ID 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Ja |
Antwoord
Retourneert: GetPageByURLIdAPIResponse
Voorbeeld

Pagina's ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Geeft terug: GetPagesAPIResponse
Voorbeeld

Pagina's ophalen (publiek) 
List pages for a tenant. Used by the FChat desktop client to populate its room list.
Vereist dat enableFChat op true staat in de opgeloste aangepaste configuratie voor elke pagina.
Pagina's die SSO vereisen worden gefilterd op basis van de groepstoegang van de aanvragende gebruiker.
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| cursor | string | query | Nee | Opaak pagineringscursor teruggegeven als nextCursor van een eerdere aanvraag. Gebonden aan dezelfde sortBy. |
| limit | integer | query | Nee | 1..200, standaard 50 |
| q | string | query | Nee | Optionele hoofdletterongevoelige titel-voorvoegselfilter. |
| sortBy | string | query | Nee | Sorteervolgorde. updatedAt (standaard, nieuwste eerst), commentCount (meeste opmerkingen eerst), of title (alfabetisch). |
| hasComments | boolean | query | Nee | Als true, geef alleen pagina's terug met ten minste één opmerking. |
Response
Geeft terug: GetPublicPagesResponse
Voorbeeld

Gebruikersinformatie ophalen 
Bulk gebruikersinfo voor een tenant. Gegeven userIds, retourneer weergave-informatie van User / SSOUser. Wordt gebruikt door de comment-widget om gebruikers die net zijn verschenen via een presence-event te verrijken. Geen paginacontext: privacy wordt uniform afgedwongen (privéprofielen worden gemaskeerd).
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| ids | string | query | Ja | Door komma's gescheiden userIds. |
Response
Retourneert: PageUsersInfoResponse
Voorbeeld

Pagina gedeeltelijk bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: PatchPageAPIResponse
Voorbeeld

Wachtende webhook-gebeurtenis verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Aantal wachtende webhook-gebeurtenissen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | query | Nee | |
| externalId | string | query | Nee | |
| eventType | string | query | Nee | |
| type | string | query | Nee | |
| domain | string | query | Nee | |
| attemptCountGT | number | query | Nee |
Respons
Retourneert: GetPendingWebhookEventCountResponse
Voorbeeld

Wachtende webhook-gebeurtenissen ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | query | Nee | |
| externalId | string | query | Nee | |
| eventType | string | query | Nee | |
| type | string | query | Nee | |
| domain | string | query | Nee | |
| attemptCountGT | number | query | Nee | |
| skip | number | query | Nee |
Response
Retourneert: GetPendingWebhookEventsResponse
Voorbeeld

Vraagconfiguratie aanmaken 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Antwoord
Geeft terug: CreateQuestionConfigResponse
Voorbeeld

Vraagconfiguratie verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Vraagconfiguratie ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Response
Retourneert: GetQuestionConfigResponse
Voorbeeld

Vraagconfiguraties ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | number | query | Nee |
Respons
Retourneert: GetQuestionConfigsResponse
Voorbeeld

Vraagconfiguratie bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Vraagresultaat aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Response
Retourneert: CreateQuestionResultResponse
Example

Vraagresultaat verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Vraagresultaat ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Retourneert: GetQuestionResultResponse
Voorbeeld

Vraagresultaten ophalen 
Parameters
| Name | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Nee | |
| userId | string | query | Nee | |
| startDate | string | query | Nee | |
| questionId | string | query | Nee | |
| questionIds | string | query | Nee | |
| skip | number | query | Nee |
Respons
Retourneert: GetQuestionResultsResponse
Voorbeeld

Vraagresultaat bijwerken 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Response
Retourneert: APIEmptyResponse
Voorbeeld

Vraagresultaten aggregeren 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| questionId | string | query | Nee | |
| questionIds | array | query | Nee | |
| urlId | string | query | Nee | |
| timeBucket | string | query | Nee | |
| startDate | string | query | Nee | |
| forceRecalculate | boolean | query | Nee |
Respons
Retourneert: AggregateQuestionResultsResponse
Voorbeeld

Vraagresultaten in bulk aggregeren 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| forceRecalculate | boolean | query | Nee |
Antwoord
Retourneert: BulkAggregateQuestionResultsResponse
Voorbeeld

Reacties combineren met vraagresultaten 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| questionId | string | query | No | |
| questionIds | array | query | No | |
| urlId | string | query | No | |
| startDate | string | query | No | |
| forceRecalculate | boolean | query | No | |
| minValue | number | query | No | |
| maxValue | number | query | No | |
| limit | number | query | No |
Respons
Retourneert: CombineQuestionResultsWithCommentsResponse
Voorbeeld

SSO-gebruiker toevoegen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Response
Retourneert: AddSSOUserAPIResponse
Voorbeeld

SSO-gebruiker verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| deleteComments | boolean | query | Nee | |
| commentDeleteMode | string | query | Nee |
Respons
Geeft terug: DeleteSSOUserAPIResponse
Voorbeeld

SSO-gebruiker ophalen op e-mail 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| string | path | Ja |
Respons
Retourneert: GetSSOUserByEmailAPIResponse
Voorbeeld

SSO-gebruiker ophalen op ID 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Respons
Retourneert: GetSSOUserByIdAPIResponse
Voorbeeld

SSO-gebruikers ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | integer | query | Nee |
Antwoord
Retourneert: GetSSOUsersResponse
Voorbeeld

SSO-gebruiker gedeeltelijk bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| updateComments | boolean | query | Nee |
Response
Retourneert: PatchSSOUserAPIResponse
Voorbeeld

SSO-gebruiker vervangen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| updateComments | boolean | query | Nee |
Antwoord
Retourneert: PutSSOUserAPIResponse
Voorbeeld

Abonnement aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Retourneert: CreateSubscriptionAPIResponse
Voorbeeld

Abonnement verwijderen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee |
Antwoord
Retourneert: DeleteSubscriptionAPIResponse
Voorbeeld

Abonnementen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| userId | string | query | Nee |
Antwoord
Retourneert: GetSubscriptionsAPIResponse
Voorbeeld

Abonnement bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee |
Response
Retourneert: UpdateSubscriptionAPIResponse
Voorbeeld

Dagelijks gebruik per tenant ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| yearNumber | number | query | Nee | |
| monthNumber | number | query | Nee | |
| dayNumber | number | query | Nee | |
| skip | number | query | Nee |
Response
Retourneert: GetTenantDailyUsagesResponse
Voorbeeld

Tenantpakket aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Response
Retourneert: CreateTenantPackageResponse
Voorbeeld

Tenantpakket verwijderen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Geeft terug: APIEmptyResponse
Voorbeeld

Tenantpakket ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: GetTenantPackageResponse
Voorbeeld

Tenantpakketten ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | number | query | Nee |
Respons
Retourneert: GetTenantPackagesResponse
Voorbeeld

Tenantpakket vervangen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Tenantpakket bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Geeft terug: APIEmptyResponse
Voorbeeld

Tenantgebruiker aanmaken 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Geeft terug: CreateTenantUserResponse
Voorbeeld

Tenantgebruiker verwijderen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| deleteComments | string | query | Nee | |
| commentDeleteMode | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Tenantgebruiker ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Response
Retourneert: GetTenantUserResponse
Voorbeeld

Tenantgebruikers ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| skip | number | query | Nee |
Antwoord
Retourneert: GetTenantUsersResponse
Voorbeeld

Tenantgebruiker vervangen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| updateComments | string | query | Nee |
Response
Retourneert: APIEmptyResponse
Voorbeeld

Loginlink verzenden 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| redirectURL | string | query | Nee |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Tenantgebruiker bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| updateComments | string | query | Nee |
Response
Retourneert: APIEmptyResponse
Voorbeeld

Tenant aanmaken 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Respons
Geeft terug: CreateTenantResponse
Voorbeeld

Tenant verwijderen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| sure | string | query | Nee |
Respons
Retourneert: APIEmptyResponse
Voorbeeld

Tenant ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Retourneert: GetTenantResponse
Voorbeeld

Tenants ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| meta | string | query | Nee | |
| skip | number | query | Nee |
Respons
Geeft terug: GetTenantsResponse
Voorbeeld

Tenant bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Antwoord
Retourneert: APIEmptyResponse
Voorbeeld

Ticketstatus wijzigen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | Yes | |
| id | string | path | Yes |
Antwoord
Geeft terug: ChangeTicketStateResponse
Voorbeeld

Ticket aanmaken 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| userId | string | query | Ja |
Respons
Retourneert: CreateTicketResponse
Voorbeeld

Ticket ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| userId | string | query | Nee |
Response
Retourneert: GetTicketResponse
Voorbeeld

Tickets ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| state | number | query | No | |
| skip | number | query | No | |
| limit | number | query | No |
Respons
Retourneert: GetTicketsResponse
Voorbeeld

Vertalingen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| namespace | string | path | Ja | |
| component | string | path | Ja | |
| locale | string | query | Nee | |
| useFullTranslationIds | boolean | query | Nee |
Antwoord
Geeft terug: GetTranslationsResponse
Voorbeeld

Afbeelding uploaden 
Afbeelding uploaden en schalen
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| sizePreset | string | query | No | Groottevoorinstelling: "Default" (1000x1000px) of "CrossPlatform" (maakt groottes voor populaire apparaten aan) |
| urlId | string | query | No | Pagina-id waarvan de upload plaatsvindt, voor configuratie |
Respons
Geeft terug: UploadImageResponse
Voorbeeld

Voortgang gebruikersbadge ophalen op ID 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Respons
Retourneert: APIGetUserBadgeProgressResponse
Voorbeeld

Voortgang gebruikersbadge ophalen op gebruikers-ID 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| userId | string | path | Ja |
Antwoord
Retourneert: APIGetUserBadgeProgressResponse
Voorbeeld

Lijst voortgang gebruikersbadges ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| limit | number | query | No | |
| skip | number | query | No |
Antwoord
Retourneert: APIGetUserBadgeProgressListResponse
Voorbeeld

Gebruikersbadge aanmaken 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja |
Antwoord
Retourneert: APICreateUserBadgeResponse
Voorbeeld

Gebruikersbadge verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptySuccessResponse
Voorbeeld

Gebruikersbadge ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIGetUserBadgeResponse
Voorbeeld

Gebruikersbadges ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| badgeId | string | query | No | |
| type | number | query | No | |
| displayedOnComments | boolean | query | No | |
| limit | number | query | No | |
| skip | number | query | No |
Antwoord
Geeft terug: APIGetUserBadgesResponse
Voorbeeld

Gebruikersbadge bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Respons
Retourneert: APIEmptySuccessResponse
Voorbeeld

Aantal gebruikersmeldingen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| sso | string | query | Nee |
Antwoord
Retourneert: GetUserNotificationCountResponse
Voorbeeld

Gebruikersmeldingen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Nee | Gebruikt om te bepalen of de huidige pagina geabonneerd is. |
| pageSize | integer | query | Nee | |
| afterId | string | query | Nee | |
| includeContext | boolean | query | Nee | |
| afterCreatedAt | integer | query | Nee | |
| unreadOnly | boolean | query | Nee | |
| dmOnly | boolean | query | Nee | |
| noDm | boolean | query | Nee | |
| includeTranslations | boolean | query | Nee | |
| includeTenantNotifications | boolean | query | Nee | |
| sso | string | query | Nee |
Response
Geeft terug: GetMyNotificationsResponse
Voorbeeld

Aantal gebruikersmeldingen resetten 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| sso | string | query | Nee |
Antwoord
Retourneert: ResetUserNotificationsResponse
Voorbeeld

Gebruikersmeldingen resetten 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| afterId | string | query | Nee | |
| afterCreatedAt | integer | query | Nee | |
| unreadOnly | boolean | query | Nee | |
| dmOnly | boolean | query | Nee | |
| noDm | boolean | query | Nee | |
| sso | string | query | Nee |
Respons
Retourneert: ResetUserNotificationsResponse
Voorbeeld

Abonnementsstatus reactiemeldingen bijwerken 
Schakelt meldingen voor een specifieke reactie in of uit.
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| notificationId | string | path | Ja | |
| optedInOrOut | string | path | Ja | |
| commentId | string | query | Ja | |
| sso | string | query | Nee |
Response
Retourneert: UpdateUserNotificationCommentSubscriptionStatusResponse
Voorbeeld

Abonnementsstatus paginameldingen bijwerken 
Schakel meldingen voor een pagina in of uit. Wanneer gebruikers zich op een pagina abonneren, worden meldingen aangemaakt voor nieuwe hoofdreacties, en ook
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Ja | |
| url | string | query | Ja | |
| pageTitle | string | query | Ja | |
| subscribedOrUnsubscribed | string | path | Ja | |
| sso | string | query | Nee |
Response
Retourneert: UpdateUserNotificationPageSubscriptionStatusResponse
Voorbeeld

Gebruikersmeldingstatus bijwerken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| notificationId | string | path | Ja | |
| newStatus | string | path | Ja | |
| sso | string | query | Nee |
Respons
Retourneert: UpdateUserNotificationStatusResponse
Voorbeeld

Gebruikersaanwezigheidsstatussen ophalen 
Parameters
| Naam | Type | Locatie | Verplicht | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlIdWS | string | query | Ja | |
| userIds | string | query | Ja |
Respons
Retourneert: GetUserPresenceStatusesResponse
Voorbeeld

Gebruikers zoeken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | path | Ja | |
| urlId | string | query | Ja | |
| usernameStartsWith | string | query | Nee | |
| mentionGroupIds | array | query | Nee | |
| sso | string | query | Nee | |
| searchSection | string | query | Nee |
Respons
Geeft terug: SearchUsersResult
Voorbeeld

Gebruiker ophalen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja |
Antwoord
Geeft terug: GetUserResponse
Voorbeeld

Stem aanmaken 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| commentId | string | query | Ja | |
| direction | string | query | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Respons
Geeft terug: VoteResponse
Voorbeeld

Stem verwijderen 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| id | string | path | Ja | |
| editKey | string | query | Nee |
Respons
Retourneert: VoteDeleteResponse
Voorbeeld

Stemmen ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Beschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Ja |
Respons
Retourneert: GetVotesResponse
Voorbeeld

Stemmen voor gebruiker ophalen 
Parameters
| Naam | Type | Locatie | Vereist | Omschrijving |
|---|---|---|---|---|
| tenantId | string | query | Ja | |
| urlId | string | query | Ja | |
| userId | string | query | Nee | |
| anonUserId | string | query | Nee |
Respons
Retourneert: GetVotesForUserResponse
Voorbeeld

Hulp nodig?
Als u problemen ondervindt of vragen hebt over de Java SDK, doe dan het volgende:
Bijdragen
Bijdragen zijn welkom! Bezoek de GitHub repository voor richtlijnen voor bijdragen.