
Jezik 🇸🇮 Slovenščina
Začetek
Referenca API
Dokumentacija
Avtentikacija
Agregacija
Revizijski zapisi
Blokiraj iz komentarja
Preveri blokirane komentarje
Komentarji
Konfiguracije domene
Predloge e-pošte
Dnevnik dogodkov
Objave vira
Prijavi komentar
Hashtagi
Moderatorji
Število obvestil
Obvestila
Strani
Čakajoči dogodki webhooka
Nastavitve vprašanj
Rezultati vprašanj
Agregacija rezultatov vprašanj
SSO uporabniki
Naročnine
Dnevna uporaba najemnika
Paketi najemnika
Uporabniki najemnika
Najemniki
Naloži sliko
Napredek značk uporabnika
Značke uporabnika
Uporabniška obvestila
Stanje 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 
Prosimo, sledite postopku namestitve in nato zaženite naslednje:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Konfigurirajte avtorizacijo API ključa: api_key
$config = FastComments\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Odkomentirajte spodnje, da nastavite predpono (npr. Bearer) za API ključ, če je potrebno
// $config = FastComments\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
$apiInstance = new FastComments\Client\Api\DefaultApi(
// Če želite uporabiti lastnega HTTP odjemalca, posredujte svoj odjemalec, ki implementira `GuzzleHttp\ClientInterface`.
// To je neobvezno, kot privzeti bo uporabljen `GuzzleHttp\Client`.
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 končne točke 
Vsi URI so relativni na https://fastcomments.com
| Razred | Metoda | HTTP zahteva | Opis |
|---|---|---|---|
| DefaultApi | addDomainConfig | POST /api/v1/domain-configs | |
| 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 | combineCommentsWithQuestionResults | GET /api/v1/question-results-aggregation/combine/comments | |
| DefaultApi | createFeedPost | POST /api/v1/feed-posts | |
| DefaultApi | createSubscription | POST /api/v1/subscriptions | |
| DefaultApi | createUserBadge | POST /api/v1/user-badges | |
| DefaultApi | deleteComment | DELETE /api/v1/comments/{id} | |
| DefaultApi | deleteDomainConfig | DELETE /api/v1/domain-configs/{domain} | |
| DefaultApi | deletePage | DELETE /api/v1/pages/{id} | |
| DefaultApi | deleteSSOUser | DELETE /api/v1/sso-users/{id} | |
| DefaultApi | deleteSubscription | DELETE /api/v1/subscriptions/{id} | |
| DefaultApi | deleteUserBadge | DELETE /api/v1/user-badges/{id} | |
| DefaultApi | flagComment | POST /api/v1/comments/{id}/flag | |
| DefaultApi | getAuditLogs | GET /api/v1/audit-logs | |
| 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 | getFeedPosts | GET /api/v1/feed-posts | |
| DefaultApi | getPageByURLId | GET /api/v1/pages/by-url-id | |
| DefaultApi | getPages | GET /api/v1/pages | |
| 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 | 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 | patchDomainConfig | PATCH /api/v1/domain-configs/{domainToUpdate} | |
| 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 | saveComment | POST /api/v1/comments | |
| DefaultApi | saveCommentsBulk | POST /api/v1/comments/bulk | |
| 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 | updateFeedPost | PATCH /api/v1/feed-posts/{id} | |
| DefaultApi | updateUserBadge | PUT /api/v1/user-badges/{id} | |
| 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 | deleteCommentPublic | DELETE /comments/{tenantId}/{commentId} | |
| PublicApi | deleteCommentVote | DELETE /comments/{tenantId}/{commentId}/vote/{voteId} | |
| PublicApi | deleteFeedPostPublic | DELETE /feed-posts/{tenantId}/{postId} | |
| PublicApi | flagCommentPublic | POST /flag-comment/{commentId} | |
| PublicApi | getCommentText | GET /comments/{tenantId}/{commentId}/text | |
| PublicApi | getCommentVoteUserNames | GET /comments/{tenantId}/{commentId}/votes | |
| 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 | getGlobalEventLog | GET /event-log/global/{tenantId} | |
| 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 | lockComment | POST /comments/{tenantId}/{commentId}/lock | |
| 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 
- APICreateUserBadgeResponse
- APIEmptyResponse
- APIEmptySuccessResponse
- APIError
- APIGetCommentResponse
- APIGetCommentsResponse
- APIGetUserBadgeProgressListResponse
- APIGetUserBadgeProgressResponse
- APIGetUserBadgeResponse
- APIGetUserBadgesResponse
- APIPage
- APISSOUser
- APIStatus
- APIUserSubscription
- AddDomainConfig200Response
- AddDomainConfig200ResponseAnyOf
- AddDomainConfigParams
- AddPageAPIResponse
- AddSSOUserAPIResponse
- AggregateQuestionResults200Response
- AggregateQuestionResultsResponse
- AggregateTimeBucket
- AggregationItem
- AggregationOpType
- AggregationOperation
- AggregationRequest
- AggregationRequestSort
- AggregationResponse
- AggregationResponseStats
- AggregationValue
- BlockFromCommentParams
- BlockFromCommentPublic200Response
- BlockSuccess
- BulkAggregateQuestionItem
- BulkAggregateQuestionResults200Response
- BulkAggregateQuestionResultsRequest
- BulkAggregateQuestionResultsResponse
- ChangeCommentPinStatusResponse
- CheckBlockedCommentsResponse
- CheckedCommentsForBlocked200Response
- CombineCommentsWithQuestionResults200Response
- CombineQuestionResultsWithCommentsResponse
- CommentData
- CommentHTMLRenderingMode
- CommentQuestionResultsRenderingType
- CommentQuestionsRequired
- CommentTextUpdateRequest
- CommentThreadDeletionMode
- CommentUserBadgeInfo
- CommentUserHashTagInfo
- CommentUserMentionInfo
- CommenterNameFormats
- CreateAPIPageData
- CreateAPISSOUserData
- CreateAPIUserSubscriptionData
- CreateCommentParams
- CreateCommentPublic200Response
- CreateFeedPost200Response
- CreateFeedPostParams
- CreateFeedPostPublic200Response
- CreateFeedPostResponse
- CreateFeedPostsResponse
- CreateSubscriptionAPIResponse
- CreateUserBadge200Response
- CreateUserBadgeParams
- CustomConfigParameters
- DeleteComment200Response
- DeleteCommentAction
- DeleteCommentPublic200Response
- DeleteCommentResult
- DeleteCommentVote200Response
- DeleteDomainConfig200Response
- DeleteFeedPostPublic200Response
- DeleteFeedPostPublic200ResponseAnyOf
- DeletePageAPIResponse
- DeleteSSOUserAPIResponse
- DeleteSubscriptionAPIResponse
- EventLogEntry
- FComment
- FCommentMeta
- FeedPost
- FeedPostLink
- FeedPostMediaItem
- FeedPostMediaItemAsset
- FeedPostStats
- FeedPostsStatsResponse
- FindCommentsByRangeItem
- FindCommentsByRangeResponse
- FlagComment200Response
- FlagCommentPublic200Response
- FlagCommentResponse
- GetAuditLogs200Response
- GetAuditLogsResponse
- GetComment200Response
- GetCommentText200Response
- GetCommentVoteUserNames200Response
- GetCommentVoteUserNamesSuccessResponse
- GetComments200Response
- GetCommentsPublic200Response
- GetCommentsResponsePublicComment
- GetCommentsResponseWithPresencePublicComment
- GetDomainConfig200Response
- GetDomainConfigs200Response
- GetDomainConfigs200ResponseAnyOf
- GetDomainConfigs200ResponseAnyOf1
- GetEventLog200Response
- GetEventLogResponse
- GetFeedPosts200Response
- GetFeedPostsPublic200Response
- GetFeedPostsResponse
- GetFeedPostsStats200Response
- GetMyNotificationsResponse
- GetPageByURLIdAPIResponse
- GetPagesAPIResponse
- GetPublicFeedPostsResponse
- GetSSOUserByEmailAPIResponse
- GetSSOUserByIdAPIResponse
- GetSSOUsers200Response
- GetSubscriptionsAPIResponse
- GetUserBadge200Response
- GetUserBadgeProgressById200Response
- GetUserBadgeProgressList200Response
- GetUserBadges200Response
- GetUserNotificationCount200Response
- GetUserNotificationCountResponse
- GetUserNotifications200Response
- GetUserPresenceStatuses200Response
- GetUserPresenceStatusesResponse
- GetUserReactsPublic200Response
- GifRating
- HeaderState
- IgnoredResponse
- ImageContentProfanityLevel
- ImportedAPIStatusFAILED
- ImportedAPIStatusSUCCESS
- LiveEvent
- LiveEventExtraInfo
- LiveEventType
- LockComment200Response
- MediaAsset
- MetaItem
- NotificationAndCount
- NotificationObjectType
- NotificationType
- PatchDomainConfigParams
- PatchPageAPIResponse
- PatchSSOUserAPIResponse
- PickAPICommentUpdatableCommentFields
- PickFCommentAPICommentFieldsKeys
- PickFCommentAPICommentFieldsKeysMeta
- PickFCommentApprovedOrCommentHTML
- PickFCommentIsDeletedOrCommentHTMLOrCommenterNameOrUserId
- PickFCommentPublicCommentFieldsKeys
- PickOmitFCommentDatePublicCommentPubSubFieldsKeys
- PickTenantAuditLogTenantAuditLogKeys
- PinComment200Response
- PubSubComment
- PubSubVote
- PublicAPIDeleteCommentResponse
- PublicAPIGetCommentTextResponse
- PublicAPISetCommentTextResponse
- PublicBlockFromCommentParams
- PublicComment
- PublicFeedPostsResponse
- PutSSOUserAPIResponse
- QueryPredicate
- QueryPredicateValue
- QuestionDatum
- QuestionRenderingType
- QuestionResult
- QuestionResultAggregationOverall
- QuestionSubQuestionVisibility
- QuestionWhenSave
- ReactBodyParams
- ReactFeedPostPublic200Response
- ReactFeedPostResponse
- RecordStringBeforeStringOrNullAfterStringOrNullValue
- RecordStringStringOrNumberValue
- RenderableUserNotification
- ResetUserNotifications200Response
- ResetUserNotificationsResponse
- SORTDIR
- SSOSecurityLevel
- SaveComment200Response
- SaveCommentResponse
- SaveCommentResponseOptimized
- SaveCommentsResponseWithPresence
- SearchUsers200Response
- SearchUsersResponse
- SetCommentText200Response
- SizePreset
- SortDirections
- SpamRule
- UnBlockCommentPublic200Response
- UnBlockFromCommentParams
- UnblockSuccess
- UpdateAPIPageData
- UpdateAPISSOUserData
- UpdateDomainConfigParams
- UpdateFeedPostParams
- UpdateUserBadge200Response
- UpdateUserBadgeParams
- UpdateUserNotificationStatus200Response
- UploadImageResponse
- UserBadge
- UserBadgeProgress
- UserNotification
- UserNotificationWriteResponse
- UserPresenceData
- UserReactsResponse
- UserSearchResult
- UserSessionInfo
- VoteBodyParams
- VoteComment200Response
- VoteDeleteResponse
- VoteDeleteResponseStatus
- 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 
Agregira dokumente z združevanjem (če je podan groupBy) in uporabo več operacij. Podprte so različne operacije (npr. sum, countDistinct, avg, itd.).
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| parentTenantId | string | query | Ne | |
| includeStats | boolean | query | Ne |
Odgovor
Vrača: AggregationResponse
Primer

pridobiRevizijskeZapise 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| limit | number | query | Ne | |
| skip | number | query | Ne | |
| order | string | query | Ne | |
| after | number | query | Ne | |
| before | number | query | Ne |
Odgovor
Vrne: GetAuditLogs200Response
Primer

blokiraj iz komentarja (javno) 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| sso | string | query | No |
Odgovor
Vrne: BlockFromCommentPublic200Response
Primer

odblokiraj komentar (javno) 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | poizvedba | Da | |
| commentId | string | pot | Da | |
| sso | string | poizvedba | Ne |
Odgovor
Vrne: UnBlockCommentPublic200Response
Primer

preveriKomentarjeZaBlokirane 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentIds | string | query | Da | Z vejico ločen seznam ID-jev komentarjev. |
| sso | string | query | Ne |
Odgovor
Vrača: CheckedCommentsForBlocked200Response
Primer

blokiraj uporabnika iz komentarja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odziv
Vrača: BlockFromCommentPublic200Response
Primer

ustvari komentar (javno) 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| broadcastId | string | query | Da | |
| sessionId | string | query | Ne | |
| sso | string | query | Ne |
Response
Vrne: CreateCommentPublic200Response
Primer

izbriši komentar 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| contextUserId | string | query | Ne | |
| isLive | boolean | query | Ne |
Odgovor
Vrne: DeleteComment200Response
Primer

izbriši komentar (javno) 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Da | |
| editKey | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrača: DeleteCommentPublic200Response
Primer

izbriši glas komentarja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| 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
Vrača: DeleteCommentVote200Response
Primer

prijavi komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odgovor
Vrne: FlagComment200Response
Primer

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

pridobi komentarje 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| page | integer | query | Ne | |
| limit | integer | query | Ne | |
| skip | integer | query | Ne | |
| asTree | boolean | query | Ne | |
| skipChildren | integer | query | Ne | |
| limitChildren | integer | query | Ne | |
| maxTreeDepth | integer | query | Ne | |
| urlId | string | query | Ne | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne | |
| contextUserId | string | query | Ne | |
| hashTag | string | query | Ne | |
| parentId | string | query | Ne | |
| direction | string | query | Ne |
Odgovor
Vrne: GetComments200Response
Primer

pridobi komentarje (javno) 
req tenantId urlId
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| page | integer | query | Ne | |
| direction | string | query | Ne | |
| sso | string | query | Ne | |
| skip | integer | query | Ne | |
| skipChildren | integer | query | Ne | |
| limit | integer | query | Ne | |
| limitChildren | integer | query | Ne | |
| countChildren | boolean | query | Ne | |
| fetchPageForCommentId | string | query | Ne | |
| includeConfig | boolean | query | Ne | |
| countAll | boolean | query | Ne | |
| includei10n | boolean | query | Ne | |
| locale | string | query | Ne | |
| modules | string | query | Ne | |
| isCrawler | boolean | query | Ne | |
| includeNotificationCount | boolean | query | Ne | |
| asTree | boolean | query | Ne | |
| maxTreeDepth | integer | query | Ne | |
| useFullTranslationIds | boolean | query | Ne | |
| parentId | string | query | Ne | |
| searchText | string | query | Ne | |
| hashTags | array | query | Ne | |
| userId | string | query | Ne | |
| customConfigStr | string | query | Ne | |
| afterCommentId | string | query | Ne | |
| beforeCommentId | string | query | Ne |
Odgovor
Vrne: GetCommentsPublic200Response
Primer

pridobi besedilo komentarja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| editKey | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrača: GetCommentText200Response
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: GetCommentVoteUserNames200Response
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: LockComment200Response
Primer

pripni komentar 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: PinComment200Response
Primer

shrani komentar 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| isLive | boolean | query | Ne | |
| doSpamCheck | boolean | query | Ne | |
| sendEmails | boolean | query | Ne | |
| populateNotifications | boolean | query | Ne |
Odgovor
Vrača: SaveComment200Response
Primer

masovno shrani komentarje 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| isLive | boolean | query | Ne | |
| doSpamCheck | boolean | query | Ne | |
| sendEmails | boolean | query | Ne | |
| populateNotifications | boolean | query | Ne |
Odziv
Vrača: SaveComment200Response
Primer

nastavi besedilo komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Da | |
| editKey | string | query | Ne | |
| sso | string | query | Ne |
Odziv
Vrača: SetCommentText200Response
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
Vrača: UnBlockCommentPublic200Response
Primer

prekliči prijavo komentarja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odgovor
Vrača: FlagComment200Response
Primer

odkleni komentar 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| commentId | string | path | Da | |
| broadcastId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: LockComment200Response
Primer

odpripni komentar 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Yes | |
| commentId | string | path | Yes | |
| broadcastId | string | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: PinComment200Response
Primer

posodobi komentar 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| contextUserId | string | query | Ne | |
| doSpamCheck | boolean | query | Ne | |
| isLive | boolean | query | Ne |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

glasuj za komentar 
Parametri
| Ime | Tip | 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 |
Odgovor
Vrne: VoteComment200Response
Primer

dodaj konfiguracijo domene 
Parametri
| Name | Type | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odziv
Vrača: AddDomainConfig200Response
Primer

izbriši konfiguracijo domene 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| domain | string | path | Da |
Odgovor
Vrne: DeleteDomainConfig200Response
Primer

pridobi konfiguracijo domene 
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| domain | string | path | Yes |
Response
Vrne: GetDomainConfig200Response
Primer

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

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

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

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

izbriši predlogo e-pošte 
Parametri
| Name | Tip | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

izbriši napako pri upodabljanju predloge e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| errorId | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

pridobi predlogo e-pošte 
Parametri
| Ime | Tip | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetEmailTemplate200Response
Primer

pridobi definicije predlog e-pošte 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrača: GetEmailTemplateDefinitions200Response
Primer

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

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

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

posodobi predlogo e-pošte 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pridobi dnevnik dogodkov 
req tenantId urlId userIdWS
Parametri
| Name | Tip | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| userIdWS | string | query | Da | |
| startTime | integer | query | Da | |
| endTime | integer | query | Da |
Odgovor
Vrne: GetEventLog200Response
Primer

pridobi globalni dnevnik dogodkov 
req tenantId urlId userIdWS
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| userIdWS | string | query | Da | |
| startTime | integer | query | Da | |
| endTime | integer | query | Da |
Odgovor
Vrača: GetEventLog200Response
Primer

ustvari objavo vira 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| broadcastId | string | query | Ne | |
| isLive | boolean | query | Ne | |
| doSpamCheck | boolean | query | Ne | |
| skipDupCheck | boolean | query | Ne |
Odgovor
Vrne: CreateFeedPost200Response
Primer

ustvari objavo vira (javno) 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: CreateFeedPostPublic200Response
Primer

izbriši objavo vira (javno) 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| postId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: DeleteFeedPostPublic200Response
Primer

pridobi objave vira 
req tenantId afterId
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| afterId | string | query | Ne | |
| limit | integer | query | Ne | |
| tags | array | query | Ne |
Odgovor
Vrne: GetFeedPosts200Response
Primer

pridobi objave vira (javno) 
req tenantId afterId
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| afterId | string | query | Ne | |
| limit | integer | query | Ne | |
| tags | array | query | Ne | |
| sso | string | query | Ne | |
| isCrawler | boolean | query | Ne | |
| includeUserInfo | boolean | query | Ne |
Odgovor
Vrne: GetFeedPostsPublic200Response
Primer

pridobi statistike objav vira 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| postIds | array | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: GetFeedPostsStats200Response
Primer

pridobi reakcije uporabnikov (javno) 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| postIds | array | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: GetUserReactsPublic200Response
Primer

oddaj reakcijo na objavo vira (javno) 
Parametri
| Ime | Tip | 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: ReactFeedPostPublic200Response
Primer

posodobi objavo vira 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

posodobi objavo vira (javno) 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| postId | string | path | Da | |
| broadcastId | string | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: CreateFeedPostPublic200Response
Primer

prijavi komentar (javno) 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | path | Yes | |
| isFlagged | boolean | query | Yes | |
| sso | string | query | No |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

dodaj hashtag 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Ne |
Odgovor
Vrača: AddHashTag200Response
Primer

masovno dodaj hashtage 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Ne |
Odgovor
Vrača: AddHashTagsBulk200Response
Primer

izbriši hashtag 
Parameterji
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tag | string | path | Yes | |
| tenantId | string | query | No |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pridobi hashtage 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| page | number | query | Ne |
Odgovor
Vrača: GetHashTags200Response
Primer

delno posodobi hashtag 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tag | string | path | Da | |
| tenantId | string | query | Ne |
Odgovor
Vrne: PatchHashTag200Response
Primer

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

izbriši moderatorja 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| sendEmail | string | query | Ne |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pridobi moderatorja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: GetModerator200Response
Primer

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

pošlji vabilo 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| fromName | string | query | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

posodobi moderatorja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

izbriši število obvestil 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

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

pridobi število obvestil 
Parametri
| Ime | Tip | 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
Vrača: GetNotificationCount200Response
Primer

pridobi obvestila 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Ne | |
| urlId | string | query | Ne | |
| fromCommentId | string | query | Ne | |
| viewed | boolean | query | Ne | |
| type | string | query | Ne | |
| skip | number | query | Ne |
Odgovor
Vrača: GetNotifications200Response
Primer

posodobi obvestilo 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| userId | string | query | Ne |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

dodaj stran 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrača: AddPageAPIResponse
Primer

izbriši stran 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: DeletePageAPIResponse
Primer

pridobi stran po URL Id 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlId | string | query | Da |
Odgovor
Vrne: GetPageByURLIdAPIResponse
Primer

pridobi strani 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrača: GetPagesAPIResponse
Primer

delno posodobi stran 
Parametri
| Ime | Tip | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: PatchPageAPIResponse
Primer

izbriši čakajoči webhook dogodek 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pridobi število čakajočih webhook dogodkov 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | query | Ne | |
| externalId | string | query | Ne | |
| eventType | string | query | Ne | |
| type | string | query | Ne | |
| domain | string | query | Ne | |
| attemptCountGT | number | query | Ne |
Odgovor
Vrne: GetPendingWebhookEventCount200Response
Primer

pridobi čakajoče webhook dogodke 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| commentId | string | query | Ne | |
| externalId | string | query | Ne | |
| eventType | string | query | Ne | |
| type | string | query | Ne | |
| domain | string | query | Ne | |
| attemptCountGT | number | query | Ne | |
| skip | number | query | Ne |
Odgovor
Vrne: GetPendingWebhookEvents200Response
Primer

ustvari nastavitve vprašanja 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateQuestionConfig200Response
Primer

izbriši nastavitve vprašanja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

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

pridobi nastavitve vprašanj 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Vrne: GetQuestionConfigs200Response
Primer

posodobi nastavitve vprašanja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

ustvari rezultat vprašanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrača: CreateQuestionResult200Response
Primer

izbriši rezultat vprašanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

pridobi rezultat vprašanja 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetQuestionResult200Response
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 |
Odgovor
Vrača: GetQuestionResults200Response
Primer

posodobi rezultat vprašanja 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

agregiraj rezultate vprašanj 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| questionId | string | query | Ne | |
| questionIds | array | query | Ne | |
| urlId | string | query | Ne | |
| timeBucket | string | query | Ne | |
| startDate | string | query | Ne | |
| forceRecalculate | boolean | query | Ne |
Odgovor
Vrne: AggregateQuestionResults200Response
Primer

masovna agregacija rezultatov vprašanj 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| forceRecalculate | boolean | query | Ne |
Odgovor
Vrne: BulkAggregateQuestionResults200Response
Primer

združi komentarje z rezultati vprašanj 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| questionId | string | query | Ne | |
| questionIds | array | query | Ne | |
| urlId | string | query | Ne | |
| startDate | string | query | Ne | |
| forceRecalculate | boolean | query | Ne | |
| minValue | number | query | Ne | |
| maxValue | number | query | Ne | |
| limit | number | query | Ne |
Odgovor
Vrne: CombineCommentsWithQuestionResults200Response
Primer

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

izbriši SSO uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| deleteComments | boolean | query | Ne | |
| commentDeleteMode | string | query | Ne |
Odgovor
Vrača: 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 | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: GetSSOUserByIdAPIResponse
Primer

pridobi SSO uporabnike 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | integer | query | Ne |
Odziv
Vrne: GetSSOUsers200Response
Primer

delno posodobi SSO uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | poizvedba | Da | |
| id | string | pot | Da | |
| updateComments | boolean | poizvedba | Ne |
Odziv
Vrne: PatchSSOUserAPIResponse
Primer

zamenjaj SSO uporabnika 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| updateComments | boolean | query | Ne |
Odgovor
Vrne: PutSSOUserAPIResponse
Primer

ustvari naročnino 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrača: CreateSubscriptionAPIResponse
Primer

izbriši naročnino 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| userId | string | query | No |
Odgovor
Vrača: DeleteSubscriptionAPIResponse
Primer

pridobi naročnine 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Ne |
Odgovor
Vrne: GetSubscriptionsAPIResponse
Primer

pridobi dnevno uporabo najemnika 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| yearNumber | number | query | Ne | |
| monthNumber | number | query | Ne | |
| dayNumber | number | query | Ne | |
| skip | number | query | Ne |
Odziv
Vrača: GetTenantDailyUsages200Response
Primer

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

izbriši paket najemnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pridobi paket najemnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odziv
Vrača: GetTenantPackage200Response
Primer

pridobi pakete najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| skip | number | query | Ne |
Odgovor
Vrača: GetTenantPackages200Response
Primer

zamenjaj paket najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

posodobi paket najemnika 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

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

izbriši uporabnika najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| deleteComments | string | query | Ne | |
| commentDeleteMode | string | query | Ne |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

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

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

zamenjaj uporabnika najemnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| updateComments | string | query | Ne |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

pošlji povezavo za prijavo 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| redirectURL | string | query | Ne |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

posodobi uporabnika najemnika 
Parametri
| Ime | Type | Location | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes | |
| updateComments | string | query | No |
Odgovor
Vrača: FlagCommentPublic200Response
Primer

ustvari najemnika 
Parametri
| Name | Tip | Location | Obvezno | Description |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateTenant200Response
Primer

izbriši najemnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| sure | string | query | Ne |
Odziv
Vrne: FlagCommentPublic200Response
Primer

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

pridobi najemnike 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| meta | string | query | Ne | |
| skip | number | query | Ne |
Odgovor
Vrača: GetTenants200Response
Primer

posodobi najemnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: FlagCommentPublic200Response
Primer

naloži sliko 
Naložite in spremenite velikost slike
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| 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, iz katere poteka nalaganje, za konfiguracijo |
Odziv
Vrne: UploadImageResponse
Primer

pridobi napredek značke po Id 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetUserBadgeProgressById200Response
Primer

pridobi napredek značke po Id uporabnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | path | Da |
Odgovor
Vrne: GetUserBadgeProgressById200Response
Primer

pridobi seznam napredka značk uporabnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| userId | string | query | Ne | |
| limit | number | query | Ne | |
| skip | number | query | Ne |
Odgovor
Vrne: GetUserBadgeProgressList200Response
Primer

ustvari značko uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da |
Odgovor
Vrne: CreateUserBadge200Response
Primer

izbriši značko uporabnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrača: UpdateUserBadge200Response
Primer

pridobi značko uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetUserBadge200Response
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
Vrača: GetUserBadges200Response
Primer

posodobi značko uporabnika 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| id | string | path | Yes |
Odgovor
Vrne: UpdateUserBadge200Response
Primer

pridobi število uporabniških obvestil 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: GetUserNotificationCount200Response
Primer

pridobi uporabniška obvestila 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| pageSize | integer | query | Ne | |
| afterId | string | query | Ne | |
| includeContext | boolean | query | Ne | |
| afterCreatedAt | integer | query | Ne | |
| unreadOnly | boolean | query | Ne | |
| dmOnly | boolean | query | Ne | |
| noDm | boolean | query | Ne | |
| includeTranslations | boolean | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrača: GetUserNotifications200Response
Primer

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

ponastavi uporabniška obvestila 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| afterId | string | query | Ne | |
| afterCreatedAt | integer | query | Ne | |
| unreadOnly | boolean | query | Ne | |
| dmOnly | boolean | query | Ne | |
| noDm | boolean | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrne: ResetUserNotifications200Response
Primer

posodobi status naročnine na komentarje uporabnika 
Omogoči ali onemogoči obvestila za določen komentar.
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| notificationId | string | path | Da | |
| optedInOrOut | string | path | Da | |
| commentId | string | query | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: UpdateUserNotificationStatus200Response
Primer

posodobi status naročnine na strani uporabnika 
Omogočite ali onemogočite obvestila za stran. Ko so uporabniki naročeni na stran, se ustvarijo obvestila za nove osnovne komentarje, in tudi
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlId | string | query | Da | |
| url | string | query | Da | |
| pageTitle | string | query | Da | |
| subscribedOrUnsubscribed | string | path | Da | |
| sso | string | query | Ne |
Odziv
Vrne: UpdateUserNotificationStatus200Response
Primer

posodobi status uporabniških obvestil 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| notificationId | string | path | Da | |
| newStatus | string | path | Da | |
| sso | string | query | Ne |
Odgovor
Vrne: UpdateUserNotificationStatus200Response
Primer

pridobi stanja prisotnosti uporabnikov 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| urlIdWS | string | query | Yes | |
| userIds | string | query | Yes |
Odgovor
Vrne: GetUserPresenceStatuses200Response
Primer

iskanje uporabnikov 
Parametri
| Ime | Tip | Lokacija | Zahtevano | Opis |
|---|---|---|---|---|
| tenantId | string | path | Da | |
| urlId | string | query | Da | |
| usernameStartsWith | string | query | Da | |
| mentionGroupIds | array | query | Ne | |
| sso | string | query | Ne |
Odgovor
Vrača: SearchUsers200Response
Primer

pridobi uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da |
Odgovor
Vrne: GetUser200Response
Primer

ustvari glas 
Parametri
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| tenantId | string | query | Yes | |
| commentId | string | query | Yes | |
| direction | string | query | Yes | |
| userId | string | query | No | |
| anonUserId | string | query | No |
Odgovor
Vrne: VoteComment200Response
Primer

izbriši glas 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| id | string | path | Da | |
| editKey | string | query | Ne |
Odgovor
Vrne: DeleteCommentVote200Response
Primer

pridobi glasove 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlId | string | query | Da |
Odziv
Vrne: GetVotes200Response
Primer

pridobi glasove za uporabnika 
Parametri
| Ime | Tip | Lokacija | Obvezno | Opis |
|---|---|---|---|---|
| tenantId | string | query | Da | |
| urlId | string | query | Da | |
| userId | string | query | Ne | |
| anonUserId | string | query | Ne |
Odziv
Vrne: GetVotesForUser200Response
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.