npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

competition_labs_admin_services

v3.0.1

Published

CompetitionLabs_Application_Services_are_used_to_manage_and_configure_spaces_

Downloads

3

Readme

competition_labs_admin_services

CompetitionLabsAdminServices - JavaScript client for competition_labs_admin_services CompetitionLabs Application Services are used to manage and configure spaces. This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 3.0.1
  • Package version: 3.0.1
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://www.competitionlabs.com/

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install competition_labs_admin_services --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your competition_labs_admin_services from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var CompetitionLabsAdminServices = require('competition_labs_admin_services');

var defaultClient = CompetitionLabsAdminServices.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = "YOUR ACCESS TOKEN"

var api = new CompetitionLabsAdminServices.AchievementsApi()
var body = [new CompetitionLabsAdminServices.CreateAchievementRequest()]; // {[CreateAchievementRequest]} Create Achievements in the CompetitionLabs database
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createAchievements(body, callback);

Documentation for API Endpoints

All URIs are relative to https://api.competitionlabs.io

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- CompetitionLabsAdminServices.AchievementsApi | createAchievements | POST /achievements | CompetitionLabsAdminServices.AchievementsApi | deleteAchievements | DELETE /achievements | CompetitionLabsAdminServices.AchievementsApi | deleteAchievementsByQuery | POST /achievements/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getAchievementIconList | GET /achievements/icons | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getAchievementToClone | GET /achievements/{id}/clone | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getAchievements | GET /achievements | CompetitionLabsAdminServices.AchievementsApi | getAchievementsByQuery | POST /achievements/query | CompetitionLabsAdminServices.AchievementsApi | getAntecendentsForAchievement | GET /achievements/{id}/antecedents | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getDesendentsForAchievement | GET /achievements/{id}/descendents | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getIssuedAchievementsCountById | GET /achievements/{id}/issued | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | getMembersAchievementsDetails | GET /achievements/{id}/members | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | updateAchievements | PUT /achievements | CompetitionLabsAdminServices.AchievementsApi | updateAchievementsLiveStatus | PUT /achievements/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.AchievementsApi | uploadAchievementsIcon | POST /achievements/icons | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ActionTypesApi | createActionTypes | POST /action-types | CompetitionLabsAdminServices.ActionTypesApi | deleteActionTypes | DELETE /action-types | CompetitionLabsAdminServices.ActionTypesApi | deleteActionTypesByQuery | POST /action-types/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ActionTypesApi | getActionTypes | GET /action-types | CompetitionLabsAdminServices.ActionTypesApi | getActionTypesByQuery | POST /action-types/query | CompetitionLabsAdminServices.ActionTypesApi | updateActionTypes | PUT /action-types | CompetitionLabsAdminServices.ApiKeysApi | createApiKeys | POST /api-keys | CompetitionLabsAdminServices.ApiKeysApi | deleteApiKeysById | DELETE /api-keys/{id} | CompetitionLabsAdminServices.ApiKeysApi | deleteApiKeysByQuery | POST /api-keys/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ApiKeysApi | getApiKeysById | GET /api-keys/{id} | CompetitionLabsAdminServices.ApiKeysApi | getApiKeysByQuery | POST /api-keys/query | CompetitionLabsAdminServices.ApiKeysApi | getListOfApiKeys | GET /api-keys | CompetitionLabsAdminServices.ApiKeysApi | updateApiKeys | PUT /api-keys | CompetitionLabsAdminServices.AwardsApi | claimAwards | PUT /awards/claim | CompetitionLabsAdminServices.AwardsApi | getAwards | GET /awards | CompetitionLabsAdminServices.AwardsApi | getAwardsByQuery | POST /awards/query | CompetitionLabsAdminServices.CollaboratorsApi | createCollaborators | POST /collaborators | CompetitionLabsAdminServices.CollaboratorsApi | deleteCollaborators | DELETE /collaborators | CompetitionLabsAdminServices.CollaboratorsApi | getAvailableRolesForCollaborators | GET /collaborators/available-roles | CompetitionLabsAdminServices.CollaboratorsApi | getCollaborators | GET /collaborators | CompetitionLabsAdminServices.CollaboratorsApi | updateCollaborators | PUT /collaborators | CompetitionLabsAdminServices.CompetitionsApi | createCompetitions | POST /competitions | CompetitionLabsAdminServices.CompetitionsApi | getCompetitions | GET /competitions | CompetitionLabsAdminServices.CompetitionsApi | getCompetitionsBrackets | GET /competitions/{id}/brackets | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | getCompetitionsByQuery | POST /competitions/query | CompetitionLabsAdminServices.CompetitionsApi | getCompetitionsToClone | GET /competitions/{id}/clone | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | getContestsForCompetitions | GET /competitions/{id}/contests | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | getLeaderboardByCompetitionId | GET /competitions/{id}/leaderboards | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | getListOfEntrants | GET /competitions/{id}/entries | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | updateCompetitions | PUT /competitions | CompetitionLabsAdminServices.CompetitionsApi | updateCompetitionsEntries | PUT /competitions/entries | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CompetitionsApi | updateCompetitionsState | PUT /competitions/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | createConnections | POST /connections | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | createKafkaConnections | POST /connections/kafka | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | createRabbitMQConnections | POST /connections/rabbitmq | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | createSqsConnections | POST /connections/sqs | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteConnections | DELETE /connections | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteConnectionsByQuery | POST /connections/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteKafkaConnections | DELETE /connections/kafka | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteKafkaConnectionsByQuery | POST /connections/kafka/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteRabbitMQConnections | DELETE /connections/rabbitmq | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteRabbitMQConnectionsByQuery | POST /connections/rabbitmq/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteSqsConnections | DELETE /connections/sqs | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | deleteSqsConnectionsByQuery | POST /connections/sqs/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getConnections | GET /connections | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getConnectionsByQuery | POST /connections/query | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getKafkaConnections | GET /connections/kafka | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getKafkaConnectionsByQuery | POST /connections/kafka/query | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getRabbitMQConnections | GET /connections/rabbitmq | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getRabbitMQConnectionsByQuery | POST /connections/rabbitmq/query | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getSqsConnections | GET /connections/sqs | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | getSqsConnectionsByQuery | POST /connections/sqs/query | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateConnections | PUT /connections | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateConnectionsState | POST /connections/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateKafkaConnections | PUT /connections/kafka | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateKafkaConnectionsState | POST /connections/kafka/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateRabbitMQConnections | PUT /connections/rabbitmq | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateRabbitMQConnectionsState | POST /connections/rabbitmq/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateSqsConnections | PUT /connections/sqs | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ConsumersApi | updateSqsConnectionsState | POST /connections/sqs/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | createContests | POST /contests | CompetitionLabsAdminServices.ContestsApi | getChildrenOfContest | GET /contests/{id}/children | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | getContests | GET /contests | CompetitionLabsAdminServices.ContestsApi | getContestsByQuery | POST /contests/query | CompetitionLabsAdminServices.ContestsApi | getContestsLeaderboardById | GET /contests/{id}/leaderboard | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | getContestsToClone | GET /contests/{id}/clone | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | getListOfEntrantsForContest | GET /contests/{id}/entries | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | getParentsOfContest | GET /contests/{id}/parents | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ContestsApi | updateContest | PUT /contests | CompetitionLabsAdminServices.ContestsApi | updateContestsState | PUT /contests/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CustomFieldsApi | createCustomFields | POST /custom-fields | CompetitionLabsAdminServices.CustomFieldsApi | deleteCustomFields | DELETE /custom-fields | CompetitionLabsAdminServices.CustomFieldsApi | deleteCustomFieldsByQuery | POST /custom-fields/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.CustomFieldsApi | getCustomFields | GET /custom-fields | CompetitionLabsAdminServices.CustomFieldsApi | getCustomFieldsByQuery | POST /custom-fields/query | CompetitionLabsAdminServices.CustomFieldsApi | updateCustomFields | PUT /custom-fields | CompetitionLabsAdminServices.DefaultApi | deleteSpace | DELETE /spaces | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.EventsApi | createEvents | POST /events | CompetitionLabsAdminServices.EventsApi | getEvents | GET /events | CompetitionLabsAdminServices.EventsApi | getEventsByQuery | POST /events/query | CompetitionLabsAdminServices.FilesApi | copyFileObjects | POST /files/copy | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.FilesApi | createFolder | POST /files | CompetitionLabsAdminServices.FilesApi | deleteFileObjectById | DELETE /files | CompetitionLabsAdminServices.FilesApi | deleteFileObjectsByQuery | POST /files/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.FilesApi | downloadFileObject | GET /files/download | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.FilesApi | getFileObjectsByQuery | POST /files/query | CompetitionLabsAdminServices.FilesApi | getListOfFileObjects | GET /files | CompetitionLabsAdminServices.FilesApi | updateFileObject | PUT /files | CompetitionLabsAdminServices.FilesApi | uploadFileObject | POST /files/upload | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.LanguagesApi | createLanguages | POST /languages | CompetitionLabsAdminServices.LanguagesApi | deleteLanguages | DELETE /languages | CompetitionLabsAdminServices.LanguagesApi | deleteLanguagesByQuery | POST /languages/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.LanguagesApi | getLanguages | GET /languages | CompetitionLabsAdminServices.LanguagesApi | getLanguagesByQuery | POST /languages/query | CompetitionLabsAdminServices.LanguagesApi | getListOfAllLanguages | GET /languages/available | CompetitionLabsAdminServices.LanguagesApi | updateLanguages | PUT /languages | CompetitionLabsAdminServices.MembersApi | createMembers | POST /members | CompetitionLabsAdminServices.MembersApi | deleteMembers | DELETE /members | CompetitionLabsAdminServices.MembersApi | deleteMembersByQuery | POST /members/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | getAchievementsForMembers | GET /members/{id}/achievements | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | getAwardsForMembers | GET /members/{id}/awards | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | getCompetitionsForMembers | GET /members/{id}/competitions | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | getContestsForMembers | GET /members/{id}/contests | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | getMembers | GET /members | CompetitionLabsAdminServices.MembersApi | getMembersByQuery | POST /members/query | CompetitionLabsAdminServices.MembersApi | getMembersByRefId | GET /members/find-by-ref-identifiers | CompetitionLabsAdminServices.MembersApi | getMessagesForMembers | GET /members/{id}/inbox | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MembersApi | updateMembers | PUT /members | CompetitionLabsAdminServices.MessagesApi | createAccountMessages | POST /messages/account | CompetitionLabsAdminServices.MessagesApi | createMemberMessages | POST /messages/member | CompetitionLabsAdminServices.MessagesApi | createNotificationMessages | POST /messages/notification | CompetitionLabsAdminServices.MessagesApi | deleteAccountMessages | DELETE /messages/account | CompetitionLabsAdminServices.MessagesApi | deleteAccountMessagesByQuery | POST /messages/account/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | deleteMemberMessages | DELETE /messages/member | CompetitionLabsAdminServices.MessagesApi | deleteMemberMessagesByQuery | POST /messages/member/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | deleteNotificationMessages | DELETE /messages/notification | CompetitionLabsAdminServices.MessagesApi | deleteNotificationMessagesByQuery | POST /messages/notification/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | getAccountMessages | GET /messages/account | CompetitionLabsAdminServices.MessagesApi | getAccountMessagesByQuery | POST /messages/account/query | CompetitionLabsAdminServices.MessagesApi | getMemberMessages | GET /messages/member | CompetitionLabsAdminServices.MessagesApi | getMemberMessagesByQuery | POST /messages/member/query | CompetitionLabsAdminServices.MessagesApi | getNotificationMessages | GET /messages/notification | CompetitionLabsAdminServices.MessagesApi | getNotificationMessagesByQuery | POST /messages/notification/query | CompetitionLabsAdminServices.MessagesApi | testAccountMessagesById | POST /messages/account/{id}/test | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | testMemberMessagesById | POST /messages/member/{id}/test | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | testNotificationMessagesById | POST /messages/notification/{id}/test | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | updateAccountMessages | PUT /messages/account | CompetitionLabsAdminServices.MessagesApi | updateAccountMessagesStatus | PUT /messages/account/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | updateMemberMessages | PUT /messages/member | CompetitionLabsAdminServices.MessagesApi | updateMemberMessagesStatus | PUT /messages/member/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.MessagesApi | updateNotificationMessages | PUT /messages/notification | CompetitionLabsAdminServices.MessagesApi | updateNotificationMessagesStatus | PUT /messages/notification/state | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ProductsApi | createProducts | POST /products | CompetitionLabsAdminServices.ProductsApi | deleteProducts | DELETE /products | CompetitionLabsAdminServices.ProductsApi | deleteProductsByQuery | POST /products/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ProductsApi | getAchievementsForProducts | GET /products/{id}/achievements | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ProductsApi | getCompetitionsForProducts | GET /products/{id}/competitions | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ProductsApi | getContestsForProducts | GET /products/{id}/contests | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.ProductsApi | getProducts | GET /products | CompetitionLabsAdminServices.ProductsApi | getProductsByQuery | POST /products/query | CompetitionLabsAdminServices.ProductsApi | getProductsByRefId | GET /products/find-by-ref-identifiers/ | CompetitionLabsAdminServices.ProductsApi | updateProducts | PUT /products | CompetitionLabsAdminServices.RepositoriesApi | createFileObjectRepository | POST /repositories | CompetitionLabsAdminServices.RepositoriesApi | deleteFileObjectRepositoriesByQuery | POST /repositories/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RepositoriesApi | deleteFileObjectRepositoryById | DELETE /repositories | CompetitionLabsAdminServices.RepositoriesApi | getFileObjectRepositoriesByQuery | POST /repositories/query | CompetitionLabsAdminServices.RepositoriesApi | getListOfFileObjectRepositories | GET /repositories | CompetitionLabsAdminServices.RepositoriesApi | updateFileObjectRepository | PUT /repositories | CompetitionLabsAdminServices.RewardTypesApi | createRewardTypes | POST /reward-types | CompetitionLabsAdminServices.RewardTypesApi | deleteRewardTypes | DELETE /reward-types | CompetitionLabsAdminServices.RewardTypesApi | deleteRewardTypesByQuery | POST /reward-types/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RewardTypesApi | getRewardTypes | GET /reward-types | CompetitionLabsAdminServices.RewardTypesApi | getRewardTypesByQuery | POST /reward-types/query | CompetitionLabsAdminServices.RewardTypesApi | updateRewardTypes | PUT /reward-types | CompetitionLabsAdminServices.RewardsApi | createRewards | POST /rewards | CompetitionLabsAdminServices.RewardsApi | deleteRewards | DELETE /rewards | CompetitionLabsAdminServices.RewardsApi | deleteRewardsByQuery | POST /rewards/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RewardsApi | getRewards | GET /rewards | CompetitionLabsAdminServices.RewardsApi | getRewardsByAchievementId | GET /rewards/achievements/{id} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RewardsApi | getRewardsByContestId | GET /rewards/contests/{id} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RewardsApi | getRewardsByQuery | POST /rewards/query | CompetitionLabsAdminServices.RewardsApi | updateRewards | PUT /rewards | CompetitionLabsAdminServices.RulesApi | getRulesByRuleScope | GET /rules/{ruleScope} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.RulesApi | validateRulesByRuleScope | POST /rules/{ruleScope} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.SpacesApi | createSpace | POST /spaces | CompetitionLabsAdminServices.SpacesApi | deleteSpaces | DELETE /spaces/{spaceName} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.SpacesApi | getSpaceInfromation | GET /spaces | CompetitionLabsAdminServices.SpacesApi | getSpacesByName | GET /spaces/{spaceName} | CompetitionLabsAdminServices.SpacesApi | updateSpace | PUT /spaces | CompetitionLabsAdminServices.TagsApi | createTags | POST /tags | CompetitionLabsAdminServices.TagsApi | deleteTags | DELETE /tags | CompetitionLabsAdminServices.TagsApi | deleteTagsByQuery | POST /tags/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.TagsApi | getTags | GET /tags | CompetitionLabsAdminServices.TagsApi | getTagsByQuery | POST /tags/query | CompetitionLabsAdminServices.TagsApi | updateTags | PUT /tags | CompetitionLabsAdminServices.TransformersApi | createTransformers | POST /transformers | CompetitionLabsAdminServices.TransformersApi | deleteTransformers | DELETE /transformers | CompetitionLabsAdminServices.TransformersApi | deleteTransformersByQuery | POST /transformers/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.TransformersApi | getTransformers | GET /transformers | CompetitionLabsAdminServices.TransformersApi | getTransformersByQuery | POST /transformers/query | CompetitionLabsAdminServices.TransformersApi | updateTransformers | PUT /transformers | CompetitionLabsAdminServices.UnitsOfMeasureApi | createUnitsOfMeasure | POST /units-of-measure | CompetitionLabsAdminServices.UnitsOfMeasureApi | deleteCollaboratorsByQuery | POST /collaborators/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.UnitsOfMeasureApi | deleteUnitsOfMeasure | DELETE /units-of-measure | CompetitionLabsAdminServices.UnitsOfMeasureApi | deleteUnitsOfMeasureByQuery | POST /units-of-measure/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.UnitsOfMeasureApi | getCollaboratorsByQuery | POST /collaborators/query | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.UnitsOfMeasureApi | getUnitsOfMeasure | GET /units-of-measure | CompetitionLabsAdminServices.UnitsOfMeasureApi | getUnitsOfMeasureByQuery | POST /units-of-measure/query | CompetitionLabsAdminServices.UnitsOfMeasureApi | updateUnitsOfMeasure | PUT /units-of-measure | CompetitionLabsAdminServices.UserApi | getUser | GET /user | CompetitionLabsAdminServices.UserApi | getUserMessages | GET /user/inbox | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.UserApi | getUserMessagesById | GET /user/inbox/{id} | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.UserApi | markAsRead | POST /user/inbox | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.WebhooksApi | createWebhooks | POST /webhooks | CompetitionLabsAdminServices.WebhooksApi | deleteWebhooks | DELETE /webhooks | CompetitionLabsAdminServices.WebhooksApi | deleteWebhooksByQuery | POST /webhooks/delete | NOT AVAILABLE IN CURRENT RELEASE CompetitionLabsAdminServices.WebhooksApi | getWebhooks | GET /webhooks | CompetitionLabsAdminServices.WebhooksApi | getWebhooksByQuery | POST /webhooks/query | CompetitionLabsAdminServices.WebhooksApi | getWebhooksTriggers | GET /webhooks/triggers | CompetitionLabsAdminServices.WebhooksApi | updateWebhooks | PUT /webhooks | CompetitionLabsAdminServices.WebhooksApi | updateWebhooksState | POST /webhooks/state | NOT AVAILABLE IN CURRENT RELEASE

Documentation for Models