
Jezik 🇸🇮 Slovenščina
Začetek
Referenca API
Dokumentacija
Avtentikacija
Agregiranje
Revizijski zapisi
Blokiranje iz komentarja
Preveri blokirane komentarje
Komentarji
Komentarji za uporabnika
Nastavitve domene
Predloge e-pošte
Dnevnik dogodkov
Objave vira
Označevanje komentarjev
GIFi
Hashtagi
Moderacija
Moderatorji
Število obvestil
Obvestila
Reakcije strani
Strani
Čakajoči webhook dogodki
Nastavitve vprašanj
Rezultati vprašanj
Agregacija rezultatov vprašanj
SSO uporabniki
Naročnine
Dnevna poraba najemnika
Paketi najemnika
Uporabniki najemnika
Najemniki
Vstopnice
Prevodi
Naloži sliko
Napredek značke uporabnika
Značke uporabnika
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
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;
}
Metode API 
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
Agregiraj 
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 zapise 
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 (javno) 
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 javni komentar 
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 za komentar 
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 javne komentarje 
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 uporabniška imena glasovalcev 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

Shrani komentarje v skupini 
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 označbo 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

Odkleni 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

Odstrani pripetek komentarja 
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 domen 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: GetDomainConfigsResponse
Primer

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

Nadomesti 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 upodabljanja 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 predlog e-pošte 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: GetEmailTemplateDefinitionsResponse
Primer

Pridobi napake upodabljanja predlog 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

Upodobi 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 vira 
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 vira 
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 vira 
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 vira 
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 vira 
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 vira 
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 vira 
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 vira 
Parameters
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Response
Vrne: APIEmptyResponse
Primer

Posodobi javno objavo vira 
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

Pridobi GIF-e (iskanje) 
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

Pridobi priljubljene GIF-e 
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 skupini 
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

Delno posodobi 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 stanje 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 štetje 
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 zapise 
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 iskalne predloge 
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

Prilagodi glasove 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

Ustvari 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

Prepovej 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

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

Ustvari množični 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

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

Označi komentar 
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

Odstrani komentar 
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

Obnovi izbrisani komentar 
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

Nastavi status 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

Nastavi status 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

Nastavi status 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

Nastavi besedilo 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

Odstrani označbo 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

Oddaj 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

Podeli 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

Znova 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 štetje obvestil 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIEmptyResponse
Primer

Pridobi predpomnjeno štetje 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 reakcijo strani V1 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes | |
| title | string | query | No |
Odziv
Vrne: CreateV1PageReact
Primer

Ustvari reakcijo strani V2 
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 reakcijo strani V1 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| urlId | string | query | Yes |
Odgovor
Returns: CreateV1PageReact
Primer

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

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

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

Pridobi uporabnike reakcij strani V2 
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 uporabnike brez povezave 
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 uporabnike na spletu 
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-ju 
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

Delno posodobi 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 štetje č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

Množično agregiraj rezultate 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-ju 
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

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

Nadomesti 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 dnevne uporabe 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

Nadomesti 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

Nadomesti 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-ju 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrne: APIGetUserBadgeProgressResponse
Primer

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

Pridobi seznam napredka značk uporabnika 
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 značko uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes |
Odgovor
Vrne: APICreateUserBadgeResponse
Primer

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

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

Pridobi značke uporabnika 
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 značko uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | poizvedba | Da | |
| id | string | pot | Da |
Odgovor
Vrne: APIEmptySuccessResponse
Primer

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

Pridobi obvestila uporabnika 
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 štetje obvestil uporabnika 
Parametri
| Ime | Vrsta | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: ResetUserNotificationsResponse
Primer

Ponastavi obvestila uporabnika 
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 obvestil uporabnika 
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 stran obvestil uporabnika 
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 obvestila uporabnika 
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 statuse prisotnosti uporabnikov 
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.