
Jezik 🇸🇮 Slovenščina
Dokumentacija
Začetek
API referenca
Avtentikacija
Agregacija
Revizijski dnevniki
Blokiranje iz komentarja
Preveri blokirane komentarje
Komentarji
Komentarji za uporabnika
Konfiguracije domene
Predloge e-pošte
Dnevnik dogodkov
Objave v viru
Označi komentar
GIF-ji
Hashtagi
Moderacija
Moderatorji
Število obvestil
Obvestila
Reakcije strani
Strani
Čakajoči webhook dogodki
Konfiguracije vprašanj
Rezultati vprašanj
Agregacija rezultatov vprašanj
SSO uporabniki
Naročnine
Dnevna uporaba najemnika
Paketi najemnika
Uporabniki najemnika
Najemniki
Vstopnice
Prevodi
Nalaganje slike
Napredek uporabniške značke
Uporabniške značke
Uporabniška obvestila
Status prisotnosti uporabnika
Iskanje uporabnikov
Uporabniki
Glasovi
FastComments PHP SDK
To je uradni PHP SDK za FastComments.
Uradni PHP SDK za API FastComments
Repozitorij
AI kodirni agenti 
Dajte vašemu programskemu agentu kontekst FastComments, ki ga potrebuje – gradnike, konfiguracijo, varno SSO, REST API in SDK-je:
npx skills add fastcomments/skills
Deluje s Claude Code, Codex, Cursor, Copilot, Gemini in vsakim drugim agentom, ki ga podpira skills CLI podpira.
Namestitev in uporaba 
Zahteve
PHP 7.4 ali novejši. Naj bi delovalo tudi s PHP 8.0.
Composer
Za namestitev vezav s pomočjo Composer, dodajte naslednje v composer.json:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/fastcomments/fastcomments-php.git"
}
],
"require": {
"fastcomments/fastcomments-php": "*@dev"
}
}
Nato zaženite composer install
Ročna namestitev
Prenesite datoteke in vključite autoload.php:
<?php
require_once('/path/to/fastcomments/client/vendor/autoload.php');
Začetek 
Sledite prosim postopku namestitve in nato zaženite naslednje:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Konfigurirajte pooblastilo API ključa: api_key
$config = FastComments\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = FastComments\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
$apiInstance = new FastComments\Client\Api\DefaultApi(
// Če želite uporabiti lasten HTTP odjemalec, posredujte svoj odjemalec, ki implementira `GuzzleHttp\ClientInterface`.
// To je izbirno, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$tenant_id = 'tenant_id_example'; // string
$add_domain_config_params = new \FastComments\Client\Model\AddDomainConfigParams(); // \FastComments\Client\Model\AddDomainConfigParams
try {
$result = $apiInstance->addDomainConfig($tenant_id, $add_domain_config_params);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->addDomainConfig: ', $e->getMessage(), PHP_EOL;
}
API odjemalci 
The SDK razkriva tri razrede odjemalcev API:
DefaultApi- metode, avtenticirane s ključem API za strežniško uporabo. Ključ API nastavite, kot je prikazano v Getting Started.PublicApi- javne metode, ki ne zahtevajo ključa API, varno jih je klicati iz brskalnikov in mobilnih aplikacij.ModerationApi- obsežen nabor API-jev za takojšnjo in hitro moderacijo. Vsaka metodaModerationApisprejme parameter$ssoin se lahko avtenticira prek SSO ali piškotka seje FastComments.com.
Uporaba PublicApi
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Javni metode ne zahtevajo ključa API.
$apiInstance = new FastComments\Client\Api\PublicApi(
new GuzzleHttp\Client()
);
$tenant_id = 'tenant_id_example'; // niz
$url_id = 'url_id_example'; // niz
try {
$result = $apiInstance->getCommentsPublic($tenant_id, $url_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PublicApi->getCommentsPublic: ', $e->getMessage(), PHP_EOL;
}
Uporaba ModerationApi
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new FastComments\Client\Api\ModerationApi(
new GuzzleHttp\Client()
);
$sso = 'sso_example'; // niz - SSO payload, ki avtenticira moderatorja
try {
$result = $apiInstance->getCount([
'sso' => $sso,
]);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ModerationApi->getCount: ', $e->getMessage(), PHP_EOL;
}
API metode 
Vsi URI so relativni na https://fastcomments.com
| Razred | Metoda | HTTP zahteva | Opis |
|---|---|---|---|
| DefaultApi | addDomainConfig | POST /api/v1/domain-configs | |
| DefaultApi | addHashTag | POST /api/v1/hash-tags | |
| DefaultApi | addHashTagsBulk | POST /api/v1/hash-tags/bulk | |
| DefaultApi | addPage | POST /api/v1/pages | |
| DefaultApi | addSSOUser | POST /api/v1/sso-users | |
| DefaultApi | aggregate | POST /api/v1/aggregate | |
| DefaultApi | aggregateQuestionResults | GET /api/v1/question-results-aggregation | |
| DefaultApi | blockUserFromComment | POST /api/v1/comments/{id}/block | |
| DefaultApi | bulkAggregateQuestionResults | POST /api/v1/question-results-aggregation/bulk | |
| DefaultApi | changeTicketState | PATCH /api/v1/tickets/{id}/state | |
| DefaultApi | combineCommentsWithQuestionResults | GET /api/v1/question-results-aggregation/combine/comments | |
| DefaultApi | createEmailTemplate | POST /api/v1/email-templates | |
| DefaultApi | createFeedPost | POST /api/v1/feed-posts | |
| DefaultApi | createModerator | POST /api/v1/moderators | |
| DefaultApi | createQuestionConfig | POST /api/v1/question-configs | |
| DefaultApi | createQuestionResult | POST /api/v1/question-results | |
| DefaultApi | createSubscription | POST /api/v1/subscriptions | |
| DefaultApi | createTenant | POST /api/v1/tenants | |
| DefaultApi | createTenantPackage | POST /api/v1/tenant-packages | |
| DefaultApi | createTenantUser | POST /api/v1/tenant-users | |
| DefaultApi | createTicket | POST /api/v1/tickets | |
| DefaultApi | createUserBadge | POST /api/v1/user-badges | |
| DefaultApi | createVote | POST /api/v1/votes | |
| DefaultApi | deleteComment | DELETE /api/v1/comments/{id} | |
| DefaultApi | deleteDomainConfig | DELETE /api/v1/domain-configs/{domain} | |
| DefaultApi | deleteEmailTemplate | DELETE /api/v1/email-templates/{id} | |
| DefaultApi | deleteEmailTemplateRenderError | DELETE /api/v1/email-templates/{id}/render-errors/{errorId} | |
| DefaultApi | deleteHashTag | DELETE /api/v1/hash-tags/{tag} | |
| DefaultApi | deleteModerator | DELETE /api/v1/moderators/{id} | |
| DefaultApi | deleteNotificationCount | DELETE /api/v1/notification-count/{id} | |
| DefaultApi | deletePage | DELETE /api/v1/pages/{id} | |
| DefaultApi | deletePendingWebhookEvent | DELETE /api/v1/pending-webhook-events/{id} | |
| DefaultApi | deleteQuestionConfig | DELETE /api/v1/question-configs/{id} | |
| DefaultApi | deleteQuestionResult | DELETE /api/v1/question-results/{id} | |
| DefaultApi | deleteSSOUser | DELETE /api/v1/sso-users/{id} | |
| DefaultApi | deleteSubscription | DELETE /api/v1/subscriptions/{id} | |
| DefaultApi | deleteTenant | DELETE /api/v1/tenants/{id} | |
| DefaultApi | deleteTenantPackage | DELETE /api/v1/tenant-packages/{id} | |
| DefaultApi | deleteTenantUser | DELETE /api/v1/tenant-users/{id} | |
| DefaultApi | deleteUserBadge | DELETE /api/v1/user-badges/{id} | |
| DefaultApi | deleteVote | DELETE /api/v1/votes/{id} | |
| DefaultApi | flagComment | POST /api/v1/comments/{id}/flag | |
| DefaultApi | getAuditLogs | GET /api/v1/audit-logs | |
| DefaultApi | getCachedNotificationCount | GET /api/v1/notification-count/{id} | |
| DefaultApi | getComment | GET /api/v1/comments/{id} | |
| DefaultApi | getComments | GET /api/v1/comments | |
| DefaultApi | getDomainConfig | GET /api/v1/domain-configs/{domain} | |
| DefaultApi | getDomainConfigs | GET /api/v1/domain-configs | |
| DefaultApi | getEmailTemplate | GET /api/v1/email-templates/{id} | |
| DefaultApi | getEmailTemplateDefinitions | GET /api/v1/email-templates/definitions | |
| DefaultApi | getEmailTemplateRenderErrors | GET /api/v1/email-templates/{id}/render-errors | |
| DefaultApi | getEmailTemplates | GET /api/v1/email-templates | |
| DefaultApi | getFeedPosts | GET /api/v1/feed-posts | |
| DefaultApi | getHashTags | GET /api/v1/hash-tags | |
| DefaultApi | getModerator | GET /api/v1/moderators/{id} | |
| DefaultApi | getModerators | GET /api/v1/moderators | |
| DefaultApi | getNotificationCount | GET /api/v1/notifications/count | |
| DefaultApi | getNotifications | GET /api/v1/notifications | |
| DefaultApi | getPageByURLId | GET /api/v1/pages/by-url-id | |
| DefaultApi | getPages | GET /api/v1/pages | |
| DefaultApi | getPendingWebhookEventCount | GET /api/v1/pending-webhook-events/count | |
| DefaultApi | getPendingWebhookEvents | GET /api/v1/pending-webhook-events | |
| DefaultApi | getQuestionConfig | GET /api/v1/question-configs/{id} | |
| DefaultApi | getQuestionConfigs | GET /api/v1/question-configs | |
| DefaultApi | getQuestionResult | GET /api/v1/question-results/{id} | |
| DefaultApi | getQuestionResults | GET /api/v1/question-results | |
| DefaultApi | getSSOUserByEmail | GET /api/v1/sso-users/by-email/{email} | |
| DefaultApi | getSSOUserById | GET /api/v1/sso-users/by-id/{id} | |
| DefaultApi | getSSOUsers | GET /api/v1/sso-users | |
| DefaultApi | getSubscriptions | GET /api/v1/subscriptions | |
| DefaultApi | getTenant | GET /api/v1/tenants/{id} | |
| DefaultApi | getTenantDailyUsages | GET /api/v1/tenant-daily-usage | |
| DefaultApi | getTenantPackage | GET /api/v1/tenant-packages/{id} | |
| DefaultApi | getTenantPackages | GET /api/v1/tenant-packages | |
| DefaultApi | getTenantUser | GET /api/v1/tenant-users/{id} | |
| DefaultApi | getTenantUsers | GET /api/v1/tenant-users | |
| DefaultApi | getTenants | GET /api/v1/tenants | |
| DefaultApi | getTicket | GET /api/v1/tickets/{id} | |
| DefaultApi | getTickets | GET /api/v1/tickets | |
| DefaultApi | getUser | GET /api/v1/users/{id} | |
| DefaultApi | getUserBadge | GET /api/v1/user-badges/{id} | |
| DefaultApi | getUserBadgeProgressById | GET /api/v1/user-badge-progress/{id} | |
| DefaultApi | getUserBadgeProgressByUserId | GET /api/v1/user-badge-progress/user/{userId} | |
| DefaultApi | getUserBadgeProgressList | GET /api/v1/user-badge-progress | |
| DefaultApi | getUserBadges | GET /api/v1/user-badges | |
| DefaultApi | getVotes | GET /api/v1/votes | |
| DefaultApi | getVotesForUser | GET /api/v1/votes/for-user | |
| DefaultApi | patchDomainConfig | PATCH /api/v1/domain-configs/{domainToUpdate} | |
| DefaultApi | patchHashTag | PATCH /api/v1/hash-tags/{tag} | |
| DefaultApi | patchPage | PATCH /api/v1/pages/{id} | |
| DefaultApi | patchSSOUser | PATCH /api/v1/sso-users/{id} | |
| DefaultApi | putDomainConfig | PUT /api/v1/domain-configs/{domainToUpdate} | |
| DefaultApi | putSSOUser | PUT /api/v1/sso-users/{id} | |
| DefaultApi | renderEmailTemplate | POST /api/v1/email-templates/render | |
| DefaultApi | replaceTenantPackage | PUT /api/v1/tenant-packages/{id} | |
| DefaultApi | replaceTenantUser | PUT /api/v1/tenant-users/{id} | |
| DefaultApi | saveComment | POST /api/v1/comments | |
| DefaultApi | saveCommentsBulk | POST /api/v1/comments/bulk | |
| DefaultApi | sendInvite | POST /api/v1/moderators/{id}/send-invite | |
| DefaultApi | sendLoginLink | POST /api/v1/tenant-users/{id}/send-login-link | |
| DefaultApi | unBlockUserFromComment | POST /api/v1/comments/{id}/un-block | |
| DefaultApi | unFlagComment | POST /api/v1/comments/{id}/un-flag | |
| DefaultApi | updateComment | PATCH /api/v1/comments/{id} | |
| DefaultApi | updateEmailTemplate | PATCH /api/v1/email-templates/{id} | |
| DefaultApi | updateFeedPost | PATCH /api/v1/feed-posts/{id} | |
| DefaultApi | updateModerator | PATCH /api/v1/moderators/{id} | |
| DefaultApi | updateNotification | PATCH /api/v1/notifications/{id} | |
| DefaultApi | updateQuestionConfig | PATCH /api/v1/question-configs/{id} | |
| DefaultApi | updateQuestionResult | PATCH /api/v1/question-results/{id} | |
| DefaultApi | updateSubscription | PATCH /api/v1/subscriptions/{id} | |
| DefaultApi | updateTenant | PATCH /api/v1/tenants/{id} | |
| DefaultApi | updateTenantPackage | PATCH /api/v1/tenant-packages/{id} | |
| DefaultApi | updateTenantUser | PATCH /api/v1/tenant-users/{id} | |
| DefaultApi | updateUserBadge | PUT /api/v1/user-badges/{id} | |
| ModerationApi | deleteModerationVote | DELETE /auth/my-account/moderate-comments/vote/{commentId}/{voteId} | |
| ModerationApi | getApiComments | GET /auth/my-account/moderate-comments/api/comments | |
| ModerationApi | getApiExportStatus | GET /auth/my-account/moderate-comments/api/export/status | |
| ModerationApi | getApiIds | GET /auth/my-account/moderate-comments/api/ids | |
| ModerationApi | getBanUsersFromComment | GET /auth/my-account/moderate-comments/ban-users/from-comment/{commentId} | |
| ModerationApi | getCommentBanStatus | GET /auth/my-account/moderate-comments/get-comment-ban-status/{commentId} | |
| ModerationApi | getCommentChildren | GET /auth/my-account/moderate-comments/comment-children/{commentId} | |
| ModerationApi | getCount | GET /auth/my-account/moderate-comments/count | |
| ModerationApi | getCounts | GET /auth/my-account/moderate-comments/banned-users/counts | |
| ModerationApi | getLogs | GET /auth/my-account/moderate-comments/logs/{commentId} | |
| ModerationApi | getManualBadges | GET /auth/my-account/moderate-comments/get-manual-badges | |
| ModerationApi | getManualBadgesForUser | GET /auth/my-account/moderate-comments/get-manual-badges-for-user | |
| ModerationApi | getModerationComment | GET /auth/my-account/moderate-comments/comment/{commentId} | |
| ModerationApi | getModerationCommentText | GET /auth/my-account/moderate-comments/get-comment-text/{commentId} | |
| ModerationApi | getPreBanSummary | GET /auth/my-account/moderate-comments/pre-ban-summary/{commentId} | |
| ModerationApi | getSearchCommentsSummary | GET /auth/my-account/moderate-comments/search/comments/summary | |
| ModerationApi | getSearchPages | GET /auth/my-account/moderate-comments/search/pages | |
| ModerationApi | getSearchSites | GET /auth/my-account/moderate-comments/search/sites | |
| ModerationApi | getSearchSuggest | GET /auth/my-account/moderate-comments/search/suggest | |
| ModerationApi | getSearchUsers | GET /auth/my-account/moderate-comments/search/users | |
| ModerationApi | getTrustFactor | GET /auth/my-account/moderate-comments/get-trust-factor | |
| ModerationApi | getUserBanPreference | GET /auth/my-account/moderate-comments/user-ban-preference | |
| ModerationApi | getUserInternalProfile | GET /auth/my-account/moderate-comments/get-user-internal-profile | |
| ModerationApi | postAdjustCommentVotes | POST /auth/my-account/moderate-comments/adjust-comment-votes/{commentId} | |
| ModerationApi | postApiExport | POST /auth/my-account/moderate-comments/api/export | |
| ModerationApi | postBanUserFromComment | POST /auth/my-account/moderate-comments/ban-user/from-comment/{commentId} | |
| ModerationApi | postBanUserUndo | POST /auth/my-account/moderate-comments/ban-user/undo | |
| ModerationApi | postBulkPreBanSummary | POST /auth/my-account/moderate-comments/bulk-pre-ban-summary | |
| ModerationApi | postCommentsByIds | POST /auth/my-account/moderate-comments/comments-by-ids | |
| ModerationApi | postFlagComment | POST /auth/my-account/moderate-comments/flag-comment/{commentId} | |
| ModerationApi | postRemoveComment | POST /auth/my-account/moderate-comments/remove-comment/{commentId} | |
| ModerationApi | postRestoreDeletedComment | POST /auth/my-account/moderate-comments/restore-deleted-comment/{commentId} | |
| ModerationApi | postSetCommentApprovalStatus | POST /auth/my-account/moderate-comments/set-comment-approval-status/{commentId} | |
| ModerationApi | postSetCommentReviewStatus | POST /auth/my-account/moderate-comments/set-comment-review-status/{commentId} | |
| ModerationApi | postSetCommentSpamStatus | POST /auth/my-account/moderate-comments/set-comment-spam-status/{commentId} | |
| ModerationApi | postSetCommentText | POST /auth/my-account/moderate-comments/set-comment-text/{commentId} | |
| ModerationApi | postUnFlagComment | POST /auth/my-account/moderate-comments/un-flag-comment/{commentId} | |
| ModerationApi | postVote | POST /auth/my-account/moderate-comments/vote/{commentId} | |
| ModerationApi | putAwardBadge | PUT /auth/my-account/moderate-comments/award-badge | |
| ModerationApi | putCloseThread | PUT /auth/my-account/moderate-comments/close-thread | |
| ModerationApi | putRemoveBadge | PUT /auth/my-account/moderate-comments/remove-badge | |
| ModerationApi | putReopenThread | PUT /auth/my-account/moderate-comments/reopen-thread | |
| ModerationApi | setTrustFactor | PUT /auth/my-account/moderate-comments/set-trust-factor | |
| PublicApi | blockFromCommentPublic | POST /block-from-comment/{commentId} | |
| PublicApi | checkedCommentsForBlocked | GET /check-blocked-comments | |
| PublicApi | createCommentPublic | POST /comments/{tenantId} | |
| PublicApi | createFeedPostPublic | POST /feed-posts/{tenantId} | |
| PublicApi | createV1PageReact | POST /page-reacts/v1/likes/{tenantId} | |
| PublicApi | createV2PageReact | POST /page-reacts/v2/{tenantId} | |
| PublicApi | deleteCommentPublic | DELETE /comments/{tenantId}/{commentId} | |
| PublicApi | deleteCommentVote | DELETE /comments/{tenantId}/{commentId}/vote/{voteId} | |
| PublicApi | deleteFeedPostPublic | DELETE /feed-posts/{tenantId}/{postId} | |
| PublicApi | deleteV1PageReact | DELETE /page-reacts/v1/likes/{tenantId} | |
| PublicApi | deleteV2PageReact | DELETE /page-reacts/v2/{tenantId} | |
| PublicApi | flagCommentPublic | POST /flag-comment/{commentId} | |
| PublicApi | getCommentText | GET /comments/{tenantId}/{commentId}/text | |
| PublicApi | getCommentVoteUserNames | GET /comments/{tenantId}/{commentId}/votes | |
| PublicApi | getCommentsForUser | GET /comments-for-user | |
| PublicApi | getCommentsPublic | GET /comments/{tenantId} | |
| PublicApi | getEventLog | GET /event-log/{tenantId} | |
| PublicApi | getFeedPostsPublic | GET /feed-posts/{tenantId} | |
| PublicApi | getFeedPostsStats | GET /feed-posts/{tenantId}/stats | |
| PublicApi | getGifLarge | GET /gifs/get-large/{tenantId} | |
| PublicApi | getGifsSearch | GET /gifs/search/{tenantId} | |
| PublicApi | getGifsTrending | GET /gifs/trending/{tenantId} | |
| PublicApi | getGlobalEventLog | GET /event-log/global/{tenantId} | |
| PublicApi | getOfflineUsers | GET /pages/{tenantId}/users/offline | |
| PublicApi | getOnlineUsers | GET /pages/{tenantId}/users/online | |
| PublicApi | getPagesPublic | GET /pages/{tenantId} | |
| PublicApi | getTranslations | GET /translations/{namespace}/{component} | |
| PublicApi | getUserNotificationCount | GET /user-notifications/get-count | |
| PublicApi | getUserNotifications | GET /user-notifications | |
| PublicApi | getUserPresenceStatuses | GET /user-presence-status | |
| PublicApi | getUserReactsPublic | GET /feed-posts/{tenantId}/user-reacts | |
| PublicApi | getUsersInfo | GET /pages/{tenantId}/users/info | |
| PublicApi | getV1PageLikes | GET /page-reacts/v1/likes/{tenantId} | |
| PublicApi | getV2PageReactUsers | GET /page-reacts/v2/{tenantId}/list | |
| PublicApi | getV2PageReacts | GET /page-reacts/v2/{tenantId} | |
| PublicApi | lockComment | POST /comments/{tenantId}/{commentId}/lock | |
| PublicApi | logoutPublic | PUT /auth/logout | |
| PublicApi | pinComment | POST /comments/{tenantId}/{commentId}/pin | |
| PublicApi | reactFeedPostPublic | POST /feed-posts/{tenantId}/react/{postId} | |
| PublicApi | resetUserNotificationCount | POST /user-notifications/reset-count | |
| PublicApi | resetUserNotifications | POST /user-notifications/reset | |
| PublicApi | searchUsers | GET /user-search/{tenantId} | |
| PublicApi | setCommentText | POST /comments/{tenantId}/{commentId}/update-text | |
| PublicApi | unBlockCommentPublic | DELETE /block-from-comment/{commentId} | |
| PublicApi | unLockComment | POST /comments/{tenantId}/{commentId}/unlock | |
| PublicApi | unPinComment | POST /comments/{tenantId}/{commentId}/unpin | |
| PublicApi | updateFeedPostPublic | PUT /feed-posts/{tenantId}/{postId} | |
| PublicApi | updateUserNotificationCommentSubscriptionStatus | POST /user-notifications/{notificationId}/mark-opted/{optedInOrOut} | |
| PublicApi | updateUserNotificationPageSubscriptionStatus | POST /user-notifications/set-subscription-state/{subscribedOrUnsubscribed} | |
| PublicApi | updateUserNotificationStatus | POST /user-notifications/{notificationId}/mark/{newStatus} | |
| PublicApi | uploadImage | POST /upload-image/{tenantId} | |
| PublicApi | voteComment | POST /comments/{tenantId}/{commentId}/vote |
Modeli 
- APIAuditLog
- APIBanUserChangeLog
- APIBanUserChangedValues
- APIBannedUser
- APIBannedUserWithMultiMatchInfo
- APIComment
- APICommentBase
- APICommentBaseMeta
- APICommentCommonBannedUser
- APICreateUserBadgeResponse
- APIDomainConfiguration
- APIEmptyResponse
- APIEmptySuccessResponse
- APIError
- APIGetCommentResponse
- APIGetCommentsResponse
- APIGetUserBadgeProgressListResponse
- APIGetUserBadgeProgressResponse
- APIGetUserBadgeResponse
- APIGetUserBadgesResponse
- APIModerateGetUserBanPreferencesResponse
- APIModerateUserBanPreferences
- APIPage
- APISSOUser
- APISaveCommentResponse
- APIStatus
- APITenant
- APITenantDailyUsage
- APITicket
- APITicketDetail
- APITicketFile
- APIUserSubscription
- AddDomainConfigParams
- AddDomainConfigResponse
- AddDomainConfigResponseAnyOf
- AddPageAPIResponse
- AddSSOUserAPIResponse
- AdjustCommentVotesParams
- AdjustVotesResponse
- AggregateQuestionResultsResponse
- AggregateResponse
- AggregateTimeBucket
- AggregationAPIError
- AggregationItem
- AggregationOpType
- AggregationOperation
- AggregationRequest
- AggregationRequestSort
- AggregationResponse
- AggregationResponseStats
- AggregationValue
- AwardUserBadgeResponse
- BanUserFromCommentResult
- BanUserUndoParams
- BannedUserMatch
- BannedUserMatchMatchedOnValue
- BannedUserMatchType
- BillingInfo
- BlockFromCommentParams
- BlockSuccess
- BuildModerationFilterParams
- BuildModerationFilterResponse
- BulkAggregateQuestionItem
- BulkAggregateQuestionResultsRequest
- BulkAggregateQuestionResultsResponse
- BulkCreateHashTagsBody
- BulkCreateHashTagsBodyTagsInner
- BulkCreateHashTagsResponse
- BulkCreateHashTagsResponseResultsInner
- BulkPreBanParams
- BulkPreBanSummary
- ChangeCommentPinStatusResponse
- ChangeTicketStateBody
- ChangeTicketStateResponse
- CheckBlockedCommentsResponse
- CombineQuestionResultsWithCommentsResponse
- CommentData
- CommentHTMLRenderingMode
- CommentLogData
- CommentLogEntry
- CommentLogType
- CommentQuestionResultsRenderingType
- CommentQuestionsRequired
- CommentTextUpdateRequest
- CommentThreadDeletionMode
- CommentUserBadgeInfo
- CommentUserHashTagInfo
- CommentUserMentionInfo
- CommenterNameFormats
- CommentsByIdsParams
- CreateAPIPageData
- CreateAPISSOUserData
- CreateAPIUserSubscriptionData
- CreateCommentParams
- CreateEmailTemplateBody
- CreateEmailTemplateResponse
- CreateFeedPostParams
- CreateFeedPostResponse
- CreateFeedPostsResponse
- CreateHashTagBody
- CreateHashTagResponse
- CreateModeratorBody
- CreateModeratorResponse
- CreateQuestionConfigBody
- CreateQuestionConfigResponse
- CreateQuestionResultBody
- CreateQuestionResultResponse
- CreateSubscriptionAPIResponse
- CreateTenantBody
- CreateTenantPackageBody
- CreateTenantPackageResponse
- CreateTenantResponse
- CreateTenantUserBody
- CreateTenantUserResponse
- CreateTicketBody
- CreateTicketResponse
- CreateUserBadgeParams
- CreateV1PageReact
- CustomConfigParameters
- CustomEmailTemplate
- DeleteCommentAction
- DeleteCommentResult
- DeleteDomainConfigResponse
- DeleteFeedPostPublicResponse
- DeleteHashTagRequestBody
- DeletePageAPIResponse
- DeleteSSOUserAPIResponse
- DeleteSubscriptionAPIResponse
- DeletedCommentResultComment
- DigestEmailFrequency
- EmailTemplateDefinition
- EmailTemplateRenderErrorResponse
- EventLogEntry
- FComment
- FCommentMeta
- FeedPost
- FeedPostLink
- FeedPostMediaItem
- FeedPostMediaItemAsset
- FeedPostStats
- FeedPostsStatsResponse
- FindCommentsByRangeItem
- FindCommentsByRangeResponse
- FlagCommentResponse
- GetAuditLogsResponse
- GetBannedUsersCountResponse
- GetBannedUsersFromCommentResponse
- GetCachedNotificationCountResponse
- GetCommentBanStatusResponse
- GetCommentTextResponse
- GetCommentVoteUserNamesSuccessResponse
- GetCommentsForUserResponse
- GetCommentsResponsePublicComment
- GetCommentsResponseWithPresencePublicComment
- GetDomainConfigResponse
- GetDomainConfigsResponse
- GetDomainConfigsResponseAnyOf
- GetDomainConfigsResponseAnyOf1
- GetEmailTemplateDefinitionsResponse
- GetEmailTemplateRenderErrorsResponse
- GetEmailTemplateResponse
- GetEmailTemplatesResponse
- GetEventLogResponse
- GetFeedPostsResponse
- GetGifsSearchResponse
- GetGifsTrendingResponse
- GetHashTagsResponse
- GetModeratorResponse
- GetModeratorsResponse
- GetMyNotificationsResponse
- GetNotificationCountResponse
- GetNotificationsResponse
- GetPageByURLIdAPIResponse
- GetPagesAPIResponse
- GetPendingWebhookEventCountResponse
- GetPendingWebhookEventsResponse
- GetPublicFeedPostsResponse
- GetPublicPagesResponse
- GetQuestionConfigResponse
- GetQuestionConfigsResponse
- GetQuestionResultResponse
- GetQuestionResultsResponse
- GetSSOUserByEmailAPIResponse
- GetSSOUserByIdAPIResponse
- GetSSOUsersResponse
- GetSubscriptionsAPIResponse
- GetTenantDailyUsagesResponse
- GetTenantManualBadgesResponse
- GetTenantPackageResponse
- GetTenantPackagesResponse
- GetTenantResponse
- GetTenantUserResponse
- GetTenantUsersResponse
- GetTenantsResponse
- GetTicketResponse
- GetTicketsResponse
- GetTranslationsResponse
- GetUserInternalProfileResponse
- GetUserInternalProfileResponseProfile
- GetUserManualBadgesResponse
- GetUserNotificationCountResponse
- GetUserPresenceStatusesResponse
- GetUserResponse
- GetUserTrustFactorResponse
- GetV1PageLikes
- GetV2PageReactUsersResponse
- GetV2PageReacts
- GetVotesForUserResponse
- GetVotesResponse
- GifGetLargeResponse
- GifRating
- GifSearchInternalError
- GifSearchResponse
- GifSearchResponseImagesInnerInner
- HeaderAccountNotification
- HeaderState
- IgnoredResponse
- ImageContentProfanityLevel
- ImportedAgentApprovalNotificationFrequency
- ImportedSiteType
- LiveEvent
- LiveEventExtraInfo
- LiveEventType
- MediaAsset
- MentionAutoCompleteMode
- MetaItem
- ModerationAPIChildCommentsResponse
- ModerationAPIComment
- ModerationAPICommentLog
- ModerationAPICommentResponse
- ModerationAPICountCommentsResponse
- ModerationAPIGetCommentIdsResponse
- ModerationAPIGetCommentsResponse
- ModerationAPIGetLogsResponse
- ModerationCommentSearchResponse
- ModerationExportResponse
- ModerationExportStatusResponse
- ModerationFilter
- ModerationPageSearchProjected
- ModerationPageSearchResponse
- ModerationSiteSearchProjected
- ModerationSiteSearchResponse
- ModerationSuggestResponse
- ModerationUserSearchProjected
- ModerationUserSearchResponse
- Moderator
- NotificationAndCount
- NotificationObjectType
- NotificationType
- PageUserEntry
- PageUsersInfoResponse
- PageUsersOfflineResponse
- PageUsersOnlineResponse
- PagesSortBy
- PatchDomainConfigParams
- PatchDomainConfigResponse
- PatchPageAPIResponse
- PatchSSOUserAPIResponse
- PendingCommentToSyncOutbound
- PostRemoveCommentResponse
- PreBanSummary
- PubSubComment
- PubSubCommentBase
- PubSubVote
- PublicAPIDeleteCommentResponse
- PublicAPIGetCommentTextResponse
- PublicAPISetCommentTextResponse
- PublicBlockFromCommentParams
- PublicComment
- PublicCommentBase
- PublicFeedPostsResponse
- PublicPage
- PublicVote
- PutDomainConfigResponse
- PutSSOUserAPIResponse
- QueryPredicate
- QueryPredicateValue
- QuestionConfig
- QuestionConfigCustomOptionsInner
- QuestionDatum
- QuestionRenderingType
- QuestionResult
- QuestionResultAggregationOverall
- QuestionSubQuestionVisibility
- QuestionWhenSave
- ReactBodyParams
- ReactFeedPostResponse
- RecordStringBeforeStringOrNullAfterStringOrNullValue
- RemoveCommentActionResponse
- RemoveUserBadgeResponse
- RenderEmailTemplateBody
- RenderEmailTemplateResponse
- RenderableUserNotification
- RepeatCommentCheckIgnoredReason
- RepeatCommentHandlingAction
- ReplaceTenantPackageBody
- ReplaceTenantUserBody
- ResetUserNotificationsResponse
- SORTDIR
- SSOSecurityLevel
- SaveCommentResponseOptimized
- SaveCommentsBulkResponse
- SaveCommentsResponseWithPresence
- SearchUsersResponse
- SearchUsersResult
- SearchUsersSectionedResponse
- SetCommentApprovedResponse
- SetCommentTextParams
- SetCommentTextResponse
- SetCommentTextResult
- SetUserTrustFactorResponse
- SizePreset
- SortDirections
- SpamRule
- TOSConfig
- TenantBadge
- TenantHashTag
- TenantPackage
- UnBlockFromCommentParams
- UnblockSuccess
- UpdatableCommentParams
- UpdateAPIPageData
- UpdateAPISSOUserData
- UpdateAPIUserSubscriptionData
- UpdateDomainConfigParams
- UpdateEmailTemplateBody
- UpdateFeedPostParams
- UpdateHashTagBody
- UpdateHashTagResponse
- UpdateModeratorBody
- UpdateNotificationBody
- UpdateQuestionConfigBody
- UpdateQuestionResultBody
- UpdateSubscriptionAPIResponse
- UpdateTenantBody
- UpdateTenantPackageBody
- UpdateTenantUserBody
- UpdateUserBadgeParams
- UpdateUserNotificationCommentSubscriptionStatusResponse
- UpdateUserNotificationPageSubscriptionStatusResponse
- UpdateUserNotificationStatusResponse
- UploadImageResponse
- User
- UserBadge
- UserBadgeProgress
- UserNotification
- UserNotificationCount
- UserNotificationWriteResponse
- UserPresenceData
- UserReactsResponse
- UserSearchResult
- UserSearchSection
- UserSearchSectionResult
- UserSessionInfo
- UsersListLocation
- VoteBodyParams
- VoteDeleteResponse
- VoteResponse
- VoteResponseStatus
- VoteResponseUser
- VoteStyle
Avtorizacija 
Sheme avtentikacije, definirane za API:
api_key
- Vrsta: API key
- Ime parametra API ključa: x-api-key
- Lokacija: HTTP header
agregacija 
Aggregira dokumente z združevanjem (če je podano groupBy) in uporabo več operacij. Podprte so različne operacije (npr. sum, countDistinct, avg itd.).
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| parentTenantId | string | query | No | |
| includeStats | boolean | query | No |
Odgovor
Vrne: AggregateResponse
Primer

pridobi revizijske dnevnike 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| limit | number | query | No | |
| skip | number | query | No | |
| order | string | query | No | |
| after | number | query | No | |
| before | number | query | No |
Response
Vrne: GetAuditLogsResponse
Primer

odjava javna 
Odgovor
Vrne: APIEmptyResponse
Primer

blokiraj iz komentarja javno 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: BlockSuccess
Primer

odblokiraj komentar javno 
Parameteri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| sso | string | query | Ne |
Odziv
Vrne: UnblockSuccess
Primer

preverjeni komentarji za blokirane 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentIds | string | query | Yes | Seznam ID-jev komentarjev, ločen z vejicami. |
| sso | string | query | No |
Odgovor
Vrne: CheckBlockedCommentsResponse
Primer

blokiraj uporabnika iz komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No | |
| anonUserId | string | query | No |
Odgovor
Vrne: BlockSuccess
Primer

ustvari komentar javno 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | pot | Da | |
| urlId | string | poizvedba | Da | |
| broadcastId | string | poizvedba | Da | |
| sessionId | string | poizvedba | Ne | |
| sso | string | poizvedba | Ne |
Odgovor
Vrne: SaveCommentsResponseWithPresence
Primer

izbriši komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| contextUserId | string | query | Ne | |
| isLive | boolean | query | Ne |
Odgovor
Vrne: DeleteCommentResult
Primer

izbriši komentar javno 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| editKey | string | query | No | |
| sSO | string | query | No |
Odgovor
Vrne: PublicAPIDeleteCommentResponse
Primer

izbriši glas komentarja 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| voteId | string | path | Da | |
| urlId | string | query | Da | |
| broadcastId | string | query | Da | |
| editKey | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: VoteDeleteResponse
Primer

označi komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No | |
| anonUserId | string | query | No |
Odgovor
Vrne: FlagCommentResponse
Primer

pridobi komentar 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIGetCommentResponse
Primer

pridobi komentarje 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| page | integer | query | No | |
| limit | integer | query | No | |
| skip | integer | query | No | |
| asTree | boolean | query | No | |
| skipChildren | integer | query | No | |
| limitChildren | integer | query | No | |
| maxTreeDepth | integer | query | No | |
| urlId | string | query | No | |
| userId | string | query | No | |
| anonUserId | string | query | No | |
| contextUserId | string | query | No | |
| hashTag | string | query | No | |
| parentId | string | query | No | |
| direction | string | query | No | |
| fromDate | integer | query | No | |
| toDate | integer | query | No |
Odgovor
Vrne: APIGetCommentsResponse
Primer

pridobi komentarje javno 
req tenantId urlId
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| 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 |
Odgovor
Vrne: GetCommentsResponseWithPresencePublicComment
Primer

pridobi besedilo komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| editKey | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: PublicAPIGetCommentTextResponse
Primer

pridobi imena uporabnikov glasov komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| dir | integer | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: GetCommentVoteUserNamesSuccessResponse
Primer

zakleni komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

pripni komentar 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: ChangeCommentPinStatusResponse
Primer

shrani komentar 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| isLive | boolean | query | No | |
| doSpamCheck | boolean | query | No | |
| sendEmails | boolean | query | No | |
| populateNotifications | boolean | query | No |
Odgovor
Vrne: APISaveCommentResponse
Primer

shranjevanje komentarjev v paketih 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| isLive | boolean | query | No | |
| doSpamCheck | boolean | query | No | |
| sendEmails | boolean | query | No | |
| populateNotifications | boolean | query | No |
Odgovor
Vrne: SaveCommentsBulkResponse
Primer

nastavi besedilo komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| editKey | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: PublicAPISetCommentTextResponse
Primer

odblokiraj uporabnika iz komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odgovor
Vrne: UnblockSuccess
Primer

odstrani oznako komentarja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No | |
| anonUserId | string | query | No |
Odgovor
Vrne: FlagCommentResponse
Primer

odzakleni komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| sso | string | query | No |
Odziv
Vrne: APIEmptyResponse
Primer

odpripi komentar 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: ChangeCommentPinStatusResponse
Primer

posodobi komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| contextUserId | string | query | Ne | |
| doSpamCheck | boolean | query | Ne | |
| isLive | boolean | query | Ne |
Odziv
Returns: APIEmptyResponse
Primer

glasuj za komentar 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| urlId | string | query | Da | |
| broadcastId | string | query | Da | |
| sessionId | string | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrne: VoteResponse
Primer

pridobi komentarje za uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| userId | string | query | Ne | |
| direction | string | query | Ne | |
| repliesToUserId | string | query | Ne | |
| page | number | query | Ne | |
| includei10n | boolean | query | Ne | |
| locale | string | query | Ne | |
| isCrawler | boolean | query | Ne |
Odgovor
Vrne: GetCommentsForUserResponse
Primer

dodaj konfiguracijo domene 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: AddDomainConfigResponse
Primer

izbriši konfiguracijo domene 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| domain | string | path | Yes |
Odziv
Vrne: DeleteDomainConfigResponse
Primer

pridobi konfiguracijo domene 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| domain | string | path | Da |
Response
Vrne: GetDomainConfigResponse
Example

pridobi konfiguracije domene 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: GetDomainConfigsResponse
Primer

popravi konfiguracijo domene 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| domainToUpdate | string | path | Da |
Odgovor
Vrne: PatchDomainConfigResponse
Primer

nastavi konfiguracijo domene 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| domainToUpdate | string | path | Yes |
Odgovor
Vrne: PutDomainConfigResponse
Primer

ustvari predlogo e-pošte 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateEmailTemplateResponse
Primer

izbriši predlogo e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

izbriši napako pri izrisu predloge e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| errorId | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi predlogo e-pošte 
Parametri
| Ime | Vrsta | Mesto | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetEmailTemplateResponse
Primer

pridobi definicije predloge e-pošte 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: GetEmailTemplateDefinitionsResponse
Primer

pridobi napake pri izrisu predloge e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| skip | number | query | Ne |
Odgovor
Vrne: GetEmailTemplateRenderErrorsResponse
Primer

pridobi predloge e-pošte 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Vrne: GetEmailTemplatesResponse
Primer

izriši predlogo e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| locale | string | query | Ne |
Odgovor
Vrne: RenderEmailTemplateResponse
Primer

posodobi predlogo e-pošte 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi dnevnik dogodkov 
req tenantId urlId userIdWS
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| userIdWS | string | query | Yes | |
| startTime | integer | query | Yes | |
| endTime | integer | query | No |
Odgovor
Vrne: GetEventLogResponse
Primer

pridobi globalni dnevnik dogodkov 
req
tenantId
urlId
userIdWS
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| userIdWS | string | query | Da | |
| startTime | integer | query | Da | |
| endTime | integer | query | Ne |
Odziv
Vrne: GetEventLogResponse
Primer

ustvari objavo v viru 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| broadcastId | string | query | No | |
| isLive | boolean | query | No | |
| doSpamCheck | boolean | query | No | |
| skipDupCheck | boolean | query | No |
Odgovor
Vrne: CreateFeedPostResponse
Primer

ustvari javno objavo v viru 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrne: CreateFeedPostResponse
Primer

izbriši javno objavo v viru 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | pot | Da | |
| postId | string | pot | Da | |
| broadcastId | string | poizvedba | Ne | |
| sso | string | poizvedba | Ne |
Odgovor
Vrne: DeleteFeedPostPublicResponse
Primer

pridobi objave v viru 
zahteva tenantId afterId
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| afterId | string | query | No | |
| limit | integer | query | No | |
| tags | array | query | No |
Odziv
Vrne: GetFeedPostsResponse
Primer

pridobi javne objave v viru 
req tenantId afterId
Parametri
| Ime | Tip | Lokacija | Potrebno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| afterId | string | query | No | |
| limit | integer | query | No | |
| tags | array | query | No | |
| sso | string | query | No | |
| isCrawler | boolean | query | No | |
| includeUserInfo | boolean | query | No |
Odgovor
Vrne: PublicFeedPostsResponse
Primer

pridobi statistiko objav v viru 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| postIds | array | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: FeedPostsStatsResponse
Primer

pridobi javne reakcije uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| postIds | array | query | No | |
| sso | string | query | No |
Odgovor
Vrne: UserReactsResponse
Primer

reagiraj na javno objavo v viru 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| postId | string | path | Da | |
| isUndo | boolean | query | Ne | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: ReactFeedPostResponse
Primer

posodobi objavo v viru 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Response
Vrne: APIEmptyResponse
Primer

posodobi javno objavo v viru 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| postId | string | path | Yes | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: CreateFeedPostResponse
Primer

označi komentar javno 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| isFlagged | boolean | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi velik GIF 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| largeInternalURLSanitized | string | query | Yes |
Odgovor
Vrne: GifGetLargeResponse
Primer

iskanje GIF-jev 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| search | string | query | Da | |
| locale | string | query | Ne | |
| rating | string | query | Ne | |
| page | number | query | Ne |
Odziv
Vrne: GetGifsSearchResponse
Primer

priljubljeni GIF-ji 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| locale | string | query | Ne | |
| rating | string | query | Ne | |
| page | number | query | Ne |
Response
Vrne: GetGifsTrendingResponse
Example

dodaj hashtag 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: CreateHashTagResponse
Primer

dodaj hashtage v paketih 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: BulkCreateHashTagsResponse
Primer

izbriši hashtag 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| tag | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

pridobi hashtage 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| page | number | query | Ne |
Odgovor
Vrne: GetHashTagsResponse
Primer

popravi hashtag 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| tag | string | path | Yes |
Odgovor
Vrne: UpdateHashTagResponse
Primer

izbriši glas moderacije 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| voteId | string | path | Yes | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odziv
Vrne: VoteDeleteResponse
Primer

pridobi API komentarje 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| page | number | query | No | |
| count | number | query | No | |
| text-search | string | query | No | |
| byIPFromComment | string | query | No | |
| filters | string | query | No | |
| searchFilters | string | query | No | |
| sorts | string | query | No | |
| demo | boolean | query | No | |
| sso | string | query | No |
Odgovor
Vrne: ModerationAPIGetCommentsResponse
Primer

pridobi status izvoza API 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| batchJobId | string | query | No | |
| sso | string | query | No |
Odziv
Vrne: ModerationExportStatusResponse
Primer

pridobi API ID-je 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| 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 |
Odgovor
Vrne: ModerationAPIGetCommentIdsResponse
Primer

pridobi blokirane uporabnike iz komentarja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| sso | string | query | No |
Odgovor
Vrne: GetBannedUsersFromCommentResponse
Primer

pridobi status blokade komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| sso | string | query | Ne |
Odgovor
Vrnitev: GetCommentBanStatusResponse
Primer

pridobi podkomentarje 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| sso | string | query | Ne |
Odziv
Vrne: ModerationAPIChildCommentsResponse
Primer

pridobi število 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| text-search | string | query | Ne | |
| byIPFromComment | string | query | Ne | |
| filter | string | query | Ne | |
| searchFilters | string | query | Ne | |
| demo | boolean | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrne: ModerationAPICountCommentsResponse
Primer

pridobi števila 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: GetBannedUsersCountResponse
Primer

pridobi dnevnike 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| sso | string | query | Ne |
Odziv
Vrne: ModerationAPIGetLogsResponse
Primer

pridobi ročne značke 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odziv
Vrne: GetTenantManualBadgesResponse
Primer

pridobi ročne značke za uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| badgesUserId | string | query | Ne | |
| commentId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: GetUserManualBadgesResponse
Primer

pridobi moderacijski komentar 
Parametri
| Ime | Vrsta | Mesto | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| includeEmail | boolean | query | No | |
| includeIP | boolean | query | No | |
| sso | string | query | No |
Odgovor
Vrne: ModerationAPICommentResponse
Primer

pridobi besedilo moderacijskega komentarja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| sso | string | query | No |
Odgovor
Vrne: GetCommentTextResponse
Primer

pridobi povzetek pred blokado 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| includeByUserIdAndEmail | boolean | query | No | |
| includeByIP | boolean | query | No | |
| includeByEmailDomain | boolean | query | No | |
| sso | string | query | No |
Odziv
Vrne: PreBanSummary
Primer

pridobi povzetek iskanja komentarjev 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| value | string | query | No | |
| filters | string | query | No | |
| searchFilters | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: ModerationCommentSearchResponse
Primer

pridobi iskalne strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| value | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: ModerationPageSearchResponse
Primer

pridobi iskalna mesta 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| value | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: ModerationSiteSearchResponse
Primer

pridobi predloge iskanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| text-search | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: ModerationSuggestResponse
Primer

pridobi iskalne uporabnike 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| value | string | query | No | |
| sso | string | query | No |
Response
Returns: ModerationUserSearchResponse
Example

pridobi faktor zaupanja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: GetUserTrustFactorResponse
Primer

pridobi nastavitve blokade uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: APIModerateGetUserBanPreferencesResponse
Primer

pridobi notranji profil uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: GetUserInternalProfileResponse
Primer

objavi prilagoditev glasov komentarja 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Response
Returns: AdjustVotesResponse
Example

objavi izvoz API 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| 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 |
Odgovor
Vrne: ModerationExportResponse
Primer

objavi blokado uporabnika iz komentarja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| banEmail | boolean | query | Ne | |
| banEmailDomain | boolean | query | Ne | |
| banIP | boolean | query | Ne | |
| deleteAllUsersComments | boolean | query | Ne | |
| bannedUntil | string | query | Ne | |
| isShadowBan | boolean | query | Ne | |
| updateId | string | query | Ne | |
| banReason | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: BanUserFromCommentResult
Primer

objavi razveljavitev blokade uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: APIEmptyResponse
Primer

objavi paketni povzetek pred blokado 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| includeByUserIdAndEmail | boolean | query | No | |
| includeByIP | boolean | query | No | |
| includeByEmailDomain | boolean | query | No | |
| sso | string | query | No |
Odgovor
Vrne: BulkPreBanSummary
Primer

objavi komentarje po ID-jih 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: ModerationAPIChildCommentsResponse
Primer

objavi označitev komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

objavi odstranitev komentarja 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: PostRemoveCommentApiResponse
Primer

objavi obnovitev izbrisanega komentarja 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odziv
Vrne: APIEmptyResponse
Primer

objavi nastavitev statusa odobritve komentarja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| approved | boolean | query | No | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: SetCommentApprovedResponse
Primer

objavi nastavitev statusa pregleda komentarja 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| reviewed | boolean | query | Ne | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Response
Vrne: APIEmptyResponse
Primer

objavi nastavitev statusa spama komentarja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| spam | boolean | query | Ne | |
| permNotSpam | boolean | query | Ne | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrne: APIEmptyResponse
Primer

objavi nastavitev besedila komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: SetCommentTextResponse
Primer

objavi odstranitev oznake komentarja 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

objavi glas 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | path | Da | |
| direction | string | query | Ne | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrne: VoteResponse
Primer

dodeli značko 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| badgeId | string | query | Yes | |
| userId | string | query | No | |
| commentId | string | query | No | |
| broadcastId | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: AwardUserBadgeResponse
Primer

zapri nit 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes | |
| sso | string | query | No |
Odziv
Vrne: APIEmptyResponse
Primer

odstrani značko 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| badgeId | string | query | Da | |
| userId | string | query | Ne | |
| commentId | string | query | Ne | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: RemoveUserBadgeResponse
Primer

ponovno odpri nit 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

nastavi faktor zaupanja 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| trustFactor | string | query | No | |
| sso | string | query | No |
Odgovor
Vrne: SetUserTrustFactorResponse
Primer

ustvari moderatorja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odziv
Vrne: CreateModeratorResponse
Primer

izbriši moderatorja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| sendEmail | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi moderatorja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: GetModeratorResponse
Primer

pridobi moderatorje 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| skip | number | query | No |
Odgovor
Vrne: GetModeratorsResponse
Primer

pošlji povabilo 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| fromName | string | query | Yes |
Odziv
Vrne: APIEmptyResponse
Primer

posodobi moderatorja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIEmptyResponse
Primer

izbriši število obvestil 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

pridobi predpomnjeno število obvestil 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: GetCachedNotificationCountResponse
Primer

pridobi število obvestil 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| urlId | string | query | No | |
| fromCommentId | string | query | No | |
| viewed | boolean | query | No | |
| type | string | query | No |
Odgovor
Vrne: GetNotificationCountResponse
Primer

pridobi obvestila 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| 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 |
Response
Vrne: GetNotificationsResponse
Primer

posodobi obvestilo 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No |
Odgovor
Vrne: APIEmptyResponse
Primer

ustvari V1 reakcijo strani 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| title | string | query | No |
Odziv
Vrne: CreateV1PageReact
Primer

ustvari V2 reakcijo strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| id | string | query | Da | |
| title | string | query | Ne |
Odgovor
Vrne: CreateV1PageReact
Primer

izbriši V1 reakcijo strani 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes |
Odgovor
Returns: CreateV1PageReact
Primer

izbriši V2 reakcijo strani 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| id | string | query | Da |
Response
Vrne: CreateV1PageReact
Example

pridobi V1 všečke strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da |
Odziv
Returns: GetV1PageLikes
Primer

pridobi V2 reakcije strani 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes |
Odgovor
Vrne: GetV2PageReacts
Primer

pridobi uporabnike V2 reakcij strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| id | string | query | Yes |
Odgovor
Vrne: GetV2PageReactUsersResponse
Primer

dodaj stran 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Returns: AddPageAPIResponse
Primer

izbriši stran 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: DeletePageAPIResponse
Primer

pridobi offline uporabnike 
Past komentatorji na strani, KI NI trenutno povezani. Razvrščeno po displayName.
Uporabite to po izčrpanju /users/online za prikaz sekcije "Members".
Kazalno straničenje na commenterName: strežnik hodi po delnem {tenantId, urlId, commenterName} indeksu od afterName naprej prek $gt, brez $skip stroška.
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | Identifikator URL strani (čiščen na strežniku). |
| afterName | string | query | No | Kazalec: podajte nextAfterName iz prejšnjega odgovora. |
| afterUserId | string | query | No | Kazalec za razreševanje neenakosti: podajte nextAfterUserId iz prejšnjega odgovora. Potrebno, ko je afterName nastavljen, da se ne izpustijo vnosi pri enakih imenih. |
Response
Returns: PageUsersOfflineResponse
Example

pridobi online uporabnike 
Trenutno‑online gledalci strani: ljudje, katerih websocket seja je v tem trenutku naročena na stran. Vrne anonCount + totalCount (naročniki po celotni sobi, vključno z anonimnimi gledalci, ki jih ne izpisujemo).
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | Identifikator URL strani (čiščen na strežniku). |
| afterName | string | query | No | Kazalec: pošljite nextAfterName iz prejšnjega odgovora. |
| afterUserId | string | query | No | Prekinitveni kazalec: pošljite nextAfterUserId iz prejšnjega odgovora. Obvezno, ko je nastavljen afterName, da se pri enakih imenih ne izpustijo vnosi. |
Response
Returns: PageUsersOnlineResponse
Primer

pridobi stran po URL ID 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes |
Odgovor
Vrne: GetPageByURLIdAPIResponse
Primer

pridobi strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odziv
Vrne: GetPagesAPIResponse
Primer

pridobi javne strani 
List pages for a tenant. Used by the FChat desktop client to populate its room list.
Requires enableFChat to be true on the resolved custom config for each page.
Pages that require SSO are filtered against the requesting user's group access.
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| cursor | string | query | No | Neprosojen kurzor za paginacijo, vrnjen kot nextCursor iz prejšnje zahteve. Povezan z istim sortBy. |
| limit | integer | query | No | 1..200, privzeto 50 |
| q | string | query | No | Neobvezni filter predpone naslova, neobčutljiv na velikost črk. |
| sortBy | string | query | No | Vrstni red. updatedAt (privzeto, najnovejši najprej), commentCount (največ komentarjev najprej) ali title (abecedno). |
| hasComments | boolean | query | No | Če je true, vrne samo strani z vsaj enim komentarjem. |
Odgovor
Vrne: GetPublicPagesResponse
Primer

pridobi informacije o uporabnikih 
Bulk user info for a tenant. Given userIds, return display info from User / SSOUser. Used by the comment widget to enrich users that just appeared via a presence event. No page context: privacy is enforced uniformly (private profiles are masked).
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| ids | string | query | Yes | Z vejicami ločeni ID-ji uporabnikov. |
Odgovor
Returns: PageUsersInfoResponse
Primer

popravi stran 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: PatchPageAPIResponse
Primer

izbriši čakajoči webhook dogodek 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi število čakajočih webhook dogodkov 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | query | No | |
| externalId | string | query | No | |
| eventType | string | query | No | |
| type | string | query | No | |
| domain | string | query | No | |
| attemptCountGT | number | query | No |
Odgovor
Vrne: GetPendingWebhookEventCountResponse
Primer

pridobi čakajoče webhook dogodke 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | query | No | |
| externalId | string | query | No | |
| eventType | string | query | No | |
| type | string | query | No | |
| domain | string | query | No | |
| attemptCountGT | number | query | No | |
| skip | number | query | No |
Response
Vrne: GetPendingWebhookEventsResponse
Example

ustvari konfiguracijo vprašanja 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateQuestionConfigResponse
Primer

izbriši konfiguracijo vprašanja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi konfiguracijo vprašanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetQuestionConfigResponse
Primer

pridobi konfiguracije vprašanj 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Returns: GetQuestionConfigsResponse
Primer

posodobi konfiguracijo vprašanja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIEmptyResponse
Primer

ustvari rezultat vprašanja 
Parametri
| Ime | Vrsta | Mesto | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odziv
Vrne: CreateQuestionResultResponse
Primer

izbriši rezultat vprašanja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

pridobi rezultat vprašanja 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetQuestionResultResponse
Primer

pridobi rezultate vprašanj 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlId | string | query | Ne | |
| userId | string | query | Ne | |
| startDate | string | query | Ne | |
| questionId | string | query | Ne | |
| questionIds | string | query | Ne | |
| skip | number | query | Ne |
Odziv
Returns: GetQuestionResultsResponse
Primer

posodobi rezultat vprašanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

agregiraj rezultate vprašanj 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| questionId | string | query | No | |
| questionIds | array | query | No | |
| urlId | string | query | No | |
| timeBucket | string | query | No | |
| startDate | string | query | No | |
| forceRecalculate | boolean | query | No |
Odgovor
Vrne: AggregateQuestionResultsResponse
Primer

paketna agregacija rezultatov vprašanj 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| forceRecalculate | boolean | query | Ne |
Odziv
Vrne: BulkAggregateQuestionResultsResponse
Primer

združi komentarje z rezultati vprašanj 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| 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 |
Odgovor
Vrne: CombineQuestionResultsWithCommentsResponse
Primer

dodaj SSO uporabnika 
Parameteri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: AddSSOUserAPIResponse
Primer

izbriši SSO uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| deleteComments | boolean | query | No | |
| commentDeleteMode | string | query | No |
Odziv
Returns: DeleteSSOUserAPIResponse
Primer

pridobi SSO uporabnika po e-pošti 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| string | path | Da |
Odgovor
Vrne: GetSSOUserByEmailAPIResponse
Primer

pridobi SSO uporabnika po ID 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: GetSSOUserByIdAPIResponse
Primer

pridobi SSO uporabnike 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | integer | query | Ne |
Response
Vrne: GetSSOUsersResponse
Primer

popravi SSO uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| updateComments | boolean | query | No |
Odgovor
Vrne: PatchSSOUserAPIResponse
Primer

nastavi SSO uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| updateComments | boolean | query | Ne |
Odgovor
Vrne: PutSSOUserAPIResponse
Primer

ustvari naročnino 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrača: CreateSubscriptionAPIResponse
Primer

izbriši naročnino 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne |
Odgovor
Vrne: DeleteSubscriptionAPIResponse
Primer

pridobi naročnine 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Ne |
Odgovor
Returns: GetSubscriptionsAPIResponse
Primer

posodobi naročnino 
Parameters
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No |
Response
Vrne: UpdateSubscriptionAPIResponse
Primer

pridobi dnevno uporabo najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| yearNumber | number | query | Ne | |
| monthNumber | number | query | Ne | |
| dayDate | number | query | Ne | |
| skip | number | query | Ne |
Odziv
Vrne: GetTenantDailyUsagesResponse
Primer

ustvari paket najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: CreateTenantPackageResponse
Primer

izbriši paket najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

pridobi paket najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odziv
Returns: GetTenantPackageResponse
Primer

pridobi pakete najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Vrne: GetTenantPackagesResponse
Primer

zamenjaj paket najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIEmptyResponse
Primer

posodobi paket najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

ustvari uporabnika najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateTenantUserResponse
Primer

izbriši uporabnika najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| deleteComments | string | query | Ne | |
| commentDeleteMode | string | query | Ne |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi uporabnika najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetTenantUserResponse
Primer

pridobi uporabnike najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Vrne: GetTenantUsersResponse
Primer

zamenjaj uporabnika najemnika 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| updateComments | string | query | Ne |
Response
Returns: APIEmptyResponse
Example

pošlji povezavo za prijavo 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| redirectURL | string | query | No |
Odziv
Vrne: APIEmptyResponse
Primer

posodobi uporabnika najemnika 
Parametri
| Ime | Tip | Lokacija | Potrebno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| updateComments | string | query | No |
Odziv
Returns: APIEmptyResponse
Primer

ustvari najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateTenantResponse
Primer

izbriši najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| sure | string | query | Ne |
Odgovor
Vrne: APIEmptyResponse
Primer

pridobi najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Returns: GetTenantResponse
Primer

pridobi najemnike 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| meta | string | query | Ne | |
| skip | number | query | Ne |
Odziv
Vrne: GetTenantsResponse
Primer

posodobi najemnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIEmptyResponse
Primer

spremeni stanje vstopnice 
Parametri
| Ime | Vrsta | Lokacija | Potrebno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | Yes | |
| id | string | path | Yes |
Odziv
Vrne: ChangeTicketStateResponse
Primer

ustvari vstopnico 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Da |
Odgovor
Vrne: CreateTicketResponse
Primer

pridobi vstopnico 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No |
Odgovor
Vrne: GetTicketResponse
Primer

pridobi vstopnice 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| state | number | query | No | |
| skip | number | query | No | |
| limit | number | query | No |
Odgovor
Vrne: GetTicketsResponse
Primer

pridobi prevode 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| namespace | string | path | Yes | |
| component | string | path | Yes | |
| locale | string | query | No | |
| useFullTranslationIds | boolean | query | No |
Odziv
Vrne: GetTranslationsResponse
Primer

naloži sliko 
Upload and resize an image
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| sizePreset | string | query | No | Prednastavitev velikosti: "Default" (1000x1000px) ali "CrossPlatform" (ustvari velikosti za priljubljene naprave) |
| urlId | string | query | No | ID strani, s katere se nalaganje izvaja, za konfiguracijo |
Response
Returns: UploadImageResponse
Example

pridobi napredek značke uporabnika po ID 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIGetUserBadgeProgressResponse
Primer

pridobi napredek značke uporabnika po uporabniškem ID 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | path | Yes |
Odgovor
Vrne: APIGetUserBadgeProgressResponse
Primer

pridobi seznam napredka uporabniških značk 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| userId | string | query | No | |
| limit | number | query | No | |
| skip | number | query | No |
Odziv
Vrne: APIGetUserBadgeProgressListResponse
Primer

ustvari uporabniško značko 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: APICreateUserBadgeResponse
Primer

izbriši uporabniško značko 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: APIEmptySuccessResponse
Primer

pridobi uporabniško značko 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: APIGetUserBadgeResponse
Primer

pridobi uporabniške značke 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Ne | |
| badgeId | string | query | Ne | |
| type | number | query | Ne | |
| displayedOnComments | boolean | query | Ne | |
| limit | number | query | Ne | |
| skip | number | query | Ne |
Odgovor
Vrne: APIGetUserBadgesResponse
Primer

posodobi uporabniško značko 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | poizvedba | Da | |
| id | string | pot | Da |
Odgovor
Vrne: APIEmptySuccessResponse
Primer

pridobi število uporabniških obvestil 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Response
Vrne: GetUserNotificationCountResponse
Primer

pridobi uporabniška obvestila 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | No | Uporablja se za določitev, ali je trenutna stran naročena. |
| pageSize | integer | query | No | |
| afterId | string | query | No | |
| includeContext | boolean | query | No | |
| afterCreatedAt | integer | query | No | |
| unreadOnly | boolean | query | No | |
| dmOnly | boolean | query | No | |
| noDm | boolean | query | No | |
| includeTranslations | boolean | query | No | |
| includeTenantNotifications | boolean | query | No | |
| sso | string | query | No |
Odgovor
Vrne: GetMyNotificationsResponse
Primer

ponastavi število uporabniških obvestil 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: ResetUserNotificationsResponse
Primer

ponastavi uporabniška obvestila 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| afterId | string | query | No | |
| afterCreatedAt | integer | query | No | |
| unreadOnly | boolean | query | No | |
| dmOnly | boolean | query | No | |
| noDm | boolean | query | No | |
| sso | string | query | No |
Response
Vrne: ResetUserNotificationsResponse
Example

posodobi status naročnine na komentarje uporabniškega obvestila 
Omogoči ali onemogoči obvestila za določen komentar.
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| notificationId | string | path | Yes | |
| optedInOrOut | string | path | Yes | |
| commentId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: UpdateUserNotificationCommentSubscriptionStatusResponse
Primer

posodobi status naročnine na strani uporabniškega obvestila 
Omogočite ali onemogočite obvestila za stran. Ko so uporabniki naročeni na stran, se ustvarijo obvestila za nove korenske komentarje, in tudi
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes | |
| url | string | query | Yes | |
| pageTitle | string | query | Yes | |
| subscribedOrUnsubscribed | string | path | Yes | |
| sso | string | query | No |
Odgovor
Vrne: UpdateUserNotificationPageSubscriptionStatusResponse
Primer

posodobi status uporabniškega obvestila 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| notificationId | string | path | Da | |
| newStatus | string | path | Da | |
| sso | string | query | Ne |
Odziv
Vrne: UpdateUserNotificationStatusResponse
Primer

pridobi status prisotnosti uporabnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlIdWS | string | query | Da | |
| userIds | string | query | Da |
Odgovor
Vrne: GetUserPresenceStatusesResponse
Primer

išči uporabnike 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| usernameStartsWith | string | query | Ne | |
| mentionGroupIds | array | query | Ne | |
| sso | string | query | Ne | |
| searchSection | string | query | Ne |
Odgovor
Vrne: SearchUsersResult
Primer

pridobi uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odziv
Vrne: GetUserResponse
Primer

ustvari glas 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | query | Da | |
| direction | string | query | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odgovor
Vrne: VoteResponse
Primer

izbriši glas 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| editKey | string | query | No |
Odziv
Vrne: VoteDeleteResponse
Primer

pridobi glasove 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes |
Odgovor
Vrne: GetVotesResponse
Primer

pridobi glasove za uporabnika 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlId | string | query | Yes | |
| userId | string | query | No | |
| anonUserId | string | query | No |
Odziv
Vrne: GetVotesForUserResponse
Primer

Potrebujete pomoč?
Če naletite na težave ali imate vprašanja glede PHP SDK, prosimo:
Prispevanje
Prispevki so dobrodošli! Prosimo, obiščite GitHub repozitorij za smernice za prispevanje.