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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gobodo/gobodo-api-promise

v0.1.136

Published

REST Interface for Gobodo API

Downloads

2,357

Readme

@gobodo/gobodo-api-promise

Gobodo - JavaScript client for @gobodo/gobodo-api-promise REST Interface for Gobodo API This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 0.1.136
  • Package version: 0.1.136
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

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 @gobodo/gobodo-api-promise --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 @gobodo/gobodo-api-promise 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 Gobodo = require('@gobodo/gobodo-api-promise');

var defaultClient = Gobodo.ApiClient.instance;
// Configure API key authorization: NexusGraphAPIAuth
var NexusGraphAPIAuth = defaultClient.authentications['NexusGraphAPIAuth'];
NexusGraphAPIAuth.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//NexusGraphAPIAuth.apiKeyPrefix['SWAuthorization'] = "Token"
// Configure API key authorization: NexusGraphAPIKey
var NexusGraphAPIKey = defaultClient.authentications['NexusGraphAPIKey'];
NexusGraphAPIKey.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//NexusGraphAPIKey.apiKeyPrefix['apiKey'] = "Token"

var api = new Gobodo.AIApi()
var opts = {
  'authorization': "authorization_example", // {String} The authorization token of the logged in user
  'cacheduration': 56, // {Number} The how long the cache entry should persist
  'cachegroup': ["null"], // {[String]} The cache group(s) the cache entry specified by the cachekey should be grouped to
  'cachekey': ["null"], // {[String]} The key to cache the response or the key to remove if a post, put, or delete operation
  'cachescope': "cachescope_example", // {String} The scope of storage of the cache item
  'cacheuser': ["null"], // {[String]} The users the cachekey should be applied to (this is only valid for clearing cache elements previously set for that user)
  'invalidationkeys': [new Gobodo.CacheInvalidation()], // {[CacheInvalidation]} Cache keys that should be invalidated in this operation
  'zeusportalPostasApp': 789, // {Number} The id of the application this operation is being performed as if the caller chooses to post as an organization page
  'zeusportalPostasOrg': 789, // {Number} The id of the console organization this operation is being performed as if the caller chooses to post as a console organization
  'zeusportalPostas': 789, // {Number} The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
  'zeusportalPostasSite': 789, // {Number} The id of the site this operation is being performed as if the caller chooses to post as an organization page
  'transactionid': "transactionid_example" // {String} The id of the transaction this operation is being run in
};
api.getDefaultProvider(opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to https://test.api.gobodo.io

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- Gobodo.AIApi | getDefaultProvider | GET /ai/default-provider | Get the default AI provider Gobodo.AIApi | getProvider | GET /ai/providers/{provider} | Get information about a specific AI provider Gobodo.AIApi | getProviders | GET /ai/providers | Get all available AI providers Gobodo.AIApi | promptAI | POST /ai/prompt | Make a prompt request to an AI provider Gobodo.AIApi | promptAIProvider | POST /ai/prompt/{provider} | Make a prompt request to a specific AI provider Gobodo.AIApi | testProvider | POST /ai/providers/{provider}/test | Test connection to an AI provider Gobodo.AIConversationsApi | addAIParticipant | POST /ai/conversations/{conversationId}/participants | Add a participant to a conversation Gobodo.AIConversationsApi | createAIConversation | POST /ai/conversations | Create a new AI conversation Gobodo.AIConversationsApi | deleteAIConversation | DELETE /ai/conversations/{conversationId} | Delete a conversation Gobodo.AIConversationsApi | getAIConversation | GET /ai/conversations/{conversationId} | Get a specific conversation Gobodo.AIConversationsApi | getAIConversations | GET /ai/conversations | Get all conversations for current user Gobodo.AIConversationsApi | getAIMessages | GET /ai/conversations/{conversationId}/messages | Get all messages in a conversation Gobodo.AIConversationsApi | getAIParticipants | GET /ai/conversations/{conversationId}/participants | Get all participants in a conversation Gobodo.AIConversationsApi | removeAIParticipant | DELETE /ai/conversations/{conversationId}/participants/{userId} | Remove a participant from a conversation Gobodo.AIConversationsApi | sendAIMessage | POST /ai/conversations/{conversationId}/messages | Send a message to a conversation Gobodo.AIConversationsApi | updateAIConversation | PUT /ai/conversations/{conversationId} | Update a conversation Gobodo.AbilitiesApi | checkAuthorization | GET /abilities/check/{objectId} | Check if user is authorized for a permission Gobodo.AbilitiesApi | getAbilitiesForObject | GET /abilities/object/{objectId} | Get user abilities for an object Gobodo.AbilitiesApi | getMyAbilities | GET /abilities/me | Get current user's global abilities Gobodo.AdCampaignsApi | createAdCampaign | POST /ads/campaigns | Create Ad Campaign Gobodo.AdCampaignsApi | get8 | GET /ads/campaigns | Gobodo.AdCampaignsApi | get9 | GET /ads/campaigns/{id} | Gobodo.AdCampaignsApi | getFromCat | GET /ads/campaigns/nextfromcategory/{id} | Gobodo.AdCampaignsApi | update | PUT /ads/campaigns/{id} | Gobodo.AdCampaignsApi | updateAds | POST /ads/campaigns/{id}/ads | Gobodo.AdCampaignsApi | updateSites | PUT /ads/campaigns/{id}/sites | Gobodo.AdManagementApi | createAd | POST /ads/ads | Create Ad Gobodo.AdManagementApi | createAdCampaign | POST /ads/campaigns | Create Ad Campaign Gobodo.AdManagementApi | get10 | GET /ads/ads | Gobodo.AdManagementApi | get11 | GET /ads/ads/{id} | Gobodo.AdManagementApi | get8 | GET /ads/campaigns | Gobodo.AdManagementApi | get9 | GET /ads/campaigns/{id} | Gobodo.AdManagementApi | getCampaign | GET /ads/ads/{id}/campaign | Gobodo.AdManagementApi | getFromCat | GET /ads/campaigns/nextfromcategory/{id} | Gobodo.AdManagementApi | update | PUT /ads/campaigns/{id} | Gobodo.AdManagementApi | update1 | PUT /ads/ads/{id} | Gobodo.AdManagementApi | updateAds | POST /ads/campaigns/{id}/ads | Gobodo.AdManagementApi | updateSites | PUT /ads/campaigns/{id}/sites | Gobodo.AdminDataManagementApi | purgeData | GET /admin/datamanagement/purge/{key}/{days} | Gobodo.AdsApi | createAd | POST /ads/ads | Create Ad Gobodo.AdsApi | get10 | GET /ads/ads | Gobodo.AdsApi | get11 | GET /ads/ads/{id} | Gobodo.AdsApi | getCampaign | GET /ads/ads/{id}/campaign | Gobodo.AdsApi | update1 | PUT /ads/ads/{id} | Gobodo.AttachmentsApi | get14 | GET /files | Gobodo.AttachmentsApi | getFileById | GET /files/{id} | Get File By Id Gobodo.AttachmentsApi | updateFile | PUT /files/{id} | Update File Gobodo.AttachmentsApi | upload | POST /files/{id}/upload | Gobodo.AttachmentsApi | uploadFile | POST /files/upload | Upload data Gobodo.AttachmentsApi | uploadFileBase64 | POST /files/upload/base64 | Upload attachment via base64 Gobodo.AuthenticationApi | login | POST /auth | Gobodo.AuthenticationApi | loginAsApp | POST /auth_as_app | Gobodo.AuthenticationApi | loginAsFunction | POST /auth_as_function | Gobodo.AuthenticationApi | loginAsOrg | POST /auth_as_org | Gobodo.AuthenticationApi | loginAsPage | POST /auth_as_page | Gobodo.AuthenticationApi | loginAsSite | POST /auth_as_site | Gobodo.AuthenticationApi | loginFacebook | POST /auth_facebook | Gobodo.AuthenticationApi | loginGoogle | POST /auth_google | Gobodo.AuthenticationApi | loginLinkedIn | POST /auth_linkedin | Gobodo.AuthenticationApi | loginTwitter | POST /auth_twitter | Gobodo.AuthenticationApi | logout | POST /signout | Gobodo.CategoriesApi | createCategory | POST /categories | Create Category Gobodo.CategoriesApi | createChildCategory | POST /categories/{id}/subcategories | Create a child category Gobodo.CategoriesApi | get15 | GET /categories | Gobodo.CategoriesApi | getCategoryById | GET /categories/{id} | Gets a category by id Gobodo.CategoriesApi | getChildCategories | GET /categories/{id}/subcategories | Gobodo.CategoriesApi | getRootCategory | GET /categories/get/root | Gets the root category Gobodo.CategoriesApi | updateCategory | POST /categories/{id} | Update Category Gobodo.CircleAccountsApi | createCircleAccount | POST /payments/circle/account | Creates a new Circle account Gobodo.CircleAccountsApi | createCirclePaymentIntent | POST /payments/circle/payment-intent | Creates a Circle payment intent Gobodo.CircleAccountsApi | createCirclePayout | POST /payments/circle/payout | Creates a payout from a Circle account Gobodo.CircleAccountsApi | createCircleTransfer | POST /payments/circle/transfer | Creates a transfer between Circle accounts Gobodo.CircleAccountsApi | get | GET /payments/circle | Gobodo.CircleAccountsApi | get1 | GET /payments/circle/{id} | Gobodo.CircleAccountsApi | getCircleAccount | GET /payments/circle/account/{id} | Gets a Circle account by ID Gobodo.CircleAccountsApi | getCircleAccountBalance | GET /payments/circle/account/{id}/balance | Gets the balance for a Circle account Gobodo.CircleAccountsApi | getCircleTransfer | GET /payments/circle/transfer/{id} | Gets a Circle transfer by ID Gobodo.CircleAccountsApi | handleCircleWebhook | POST /payments/circle/webhook | Handles Circle webhook events Gobodo.CommentsApi | addReplyToComment | POST /comments/{commentId}/replies | Add a reply to a comment Gobodo.CommentsApi | commentExists | GET /comments/{commentId}/exists | Check if a comment exists Gobodo.CommentsApi | createComment | POST /comments | Create a new comment Gobodo.CommentsApi | deleteComment | DELETE /comments/{commentId} | Delete a comment Gobodo.CommentsApi | getCommentById | GET /comments/{commentId} | Get a comment by id Gobodo.CommentsApi | getCommentCount | GET /comments/parent/{parentObjectId}/count | Get count of comments by parent object Gobodo.CommentsApi | getCommentReplies | GET /comments/{commentId}/replies | Get replies to a comment Gobodo.CommentsApi | getComments | GET /comments/parent/{parentObjectId} | Get comments by parent object Gobodo.CommentsApi | updateComment | PUT /comments/{commentId} | Update a comment Gobodo.ContentManagementApi | addDocumentPart | POST /articles/{docid}/entryparts | Gobodo.ContentManagementApi | changeDocPartType | PUT /entryparts/{docpartid}/changetype/{typeid} | Gobodo.ContentManagementApi | changeStatus | PUT /articles/{id}/status | Gobodo.ContentManagementApi | copyDocument | POST /articles/{docid}/copy | Gobodo.ContentManagementApi | copyDocumentPart | POST /entryparts/{docpartid}/copy | Gobodo.ContentManagementApi | createChildDocumentPart | POST /entryparts/{docpartid}/entryparts | Gobodo.ContentManagementApi | createDocument | POST /articles | Gobodo.ContentManagementApi | createDocumentPart | POST /entryparts | Gobodo.ContentManagementApi | deleteDocPart | DELETE /entryparts/{docpartid} | Delete Document Part Gobodo.ContentManagementApi | deleteDocument | DELETE /articles/{docid} | Delete Document Part Gobodo.ContentManagementApi | editDocument | PUT /articles/{docid} | Gobodo.ContentManagementApi | get16 | GET /articles | Gobodo.ContentManagementApi | get17 | GET /entryparts | Gobodo.ContentManagementApi | getAllDocumentPartTypes | GET /entryparttypes | Gobodo.ContentManagementApi | getAllDocumentTypes | GET /entrytypes | Gobodo.ContentManagementApi | getAllDocuments | GET /articles/all | Gobodo.ContentManagementApi | getChildDocPartByPageNum | GET /entryparts/{id}/entryparts/{pagenum} | Gobodo.ContentManagementApi | getDocumentById | GET /articles/{id} | Gobodo.ContentManagementApi | getDocumentPartById | GET /entryparts/{id} | Gobodo.ContentManagementApi | getDocumentPartById1 | GET /entryparts/{id}/entryparts | Gobodo.ContentManagementApi | getDocumentPartByPageNumber | GET /articles/{id}/entryparts/{pagenum} | Gobodo.ContentManagementApi | getDocumentPartTypeById | GET /entryparttypes/{id} | Gobodo.ContentManagementApi | getDocumentParts | GET /articles/{id}/entryparts | Gobodo.ContentManagementApi | getDocumentTypeById | GET /entrytypes/{id} | Gobodo.ContentManagementApi | getDocumentsByType | GET /articles/entrytype/{typeid} | Gobodo.ContentManagementApi | moveChildPart | PUT /entryparts/{docpartid}/moveto/entrypart/{newdocpartid}/{partindex} | Gobodo.ContentManagementApi | moveDocPart | PUT /entryparts/{docpartid}/moveto/article/{articleid}/{partindex} | Gobodo.ContentManagementApi | updateDocumentPart | PUT /entryparts/{docpartid} | Gobodo.ConversationsApi | createConversation | POST /privatemessages/conversations | Create conversation(s) Gobodo.ConversationsApi | get27 | GET /privatemessages/conversations | Gobodo.ConversationsApi | getAllConversations | GET /privatemessages/conversations/all | Get All Conversations Gobodo.ConversationsApi | getChildConversations | GET /privatemessages/conversations/{convoid}/childconversations | Get Child Conversations Gobodo.ConversationsApi | getConversationById | GET /privatemessages/conversations/{id} | Get Conversation by ID Gobodo.ConversationsApi | getConversationMessages | GET /privatemessages/conversations/{convoid}/messages | Get Messages in a Conversation Gobodo.ConversationsApi | getConversationParticipants | GET /privatemessages/conversations/{convoid}/groupedmessages | Get Grouped Messages Gobodo.ConversationsApi | getUnreadMessageCount | GET /privatemessages/conversations/newmessagecount | Get the number of unread messages Gobodo.CurrencyApi | createCurrency | POST /payments/currency | Create a new currency Gobodo.CurrencyApi | getAllCurrencies | GET /payments/currency | Get all currencies Gobodo.CurrencyApi | getCurrencyById | GET /payments/currency/{currencyId} | Get a currency by id Gobodo.CurrencyApi | getRegisteredCurrencies | GET /payments/currency/registeredcurrencies/{minterId} | Get all currencies registered by a minter Gobodo.CurrencyApi | isCurrencyRegistered | GET /payments/currency/isregistered/{currencyId} | Check if a currency is registered Gobodo.CurrencyApi | isCurrencyRegistered1 | GET /payments/currency/isregistered/{minterId}/{currencyId} | Check if a currency is registered with a minter Gobodo.CurrencyApi | registerCurrency | POST /payments/currency/register | Register a currency with a minter Gobodo.DataSheetImportsApi | addDataSheetImportGeocodeMapping | PUT /datasheetimport/{dsimportid}/geolocateon/{sheetprop} | Geocodes the imported object based on the specified data field in the datasheet Gobodo.DataSheetImportsApi | addDataSheetImportMapping | PUT /datasheetimport/{dsimportid}/mapping/{sheetprop} | Sets the mapping associated with the sheetprop Gobodo.DataSheetImportsApi | addEndObjectLookup | PUT /datasheetimport/{dsimportid}/endobjectlookup | Sets the lookup for the end object in a relationship import Gobodo.DataSheetImportsApi | addStartObjectLookup | PUT /datasheetimport/{dsimportid}/startobjectlookup | Sets the lookup for the start object in a relationship import Gobodo.DataSheetImportsApi | createDataSheetImport | POST /datasheetimport/{containerid}/{reltypeid}/{objecttypeid} | Create a datasheet import Gobodo.DataSheetImportsApi | createRelationshipDataSheetImport | POST /datasheetimport/{containerid}/{reltypeid} | Create a datasheet import for relationships Gobodo.DataSheetImportsApi | get18 | GET /datasheetimport | Gobodo.DataSheetImportsApi | getDataSheetImportById | GET /datasheetimport/{dsimportid} | Gets the datasheet import specified by the given id Gobodo.DataSheetImportsApi | getDataSheetImportMapping | GET /datasheetimport/{dsimportid}/mapping/{sheetprop} | Gets the mapping associated with the sheetprop Gobodo.DataSheetImportsApi | getDataSheetImportPreview | GET /datasheetimport/{dsimportid}/preview | Gets the preview of the data being imported Gobodo.DataSheetImportsApi | removeDataSheetImportGeocodeMapping | DELETE /datasheetimport/{dsimportid}/geolocateon | Removes the geolocation mapping field Gobodo.DataSheetImportsApi | removeDataSheetImportMapping | DELETE /datasheetimport/{dsimportid}/mapping/{sheetprop} | Removes the mapping associated with the sheetprop Gobodo.DataSheetImportsApi | runDataSheetImport | POST /datasheetimport/{dsimportid}/run | Run a datasheet import Gobodo.DataSheetImportsApi | setDataSheetImportPrivacy | PUT /datasheetimport/{dsimportid}/privacy | Sets the privacy settings of the generated objects from the import Gobodo.DataSheetImportsApi | updateDataSheetImportFile | PUT /datasheetimport/{dsimportid}/datasheet | Updates the file used by a datasheet import Gobodo.DefaultApi | createAccount | POST /api/payment/paypal/account | Gobodo.DefaultApi | createApiClient | POST /api/clients | Gobodo.DefaultApi | createPaymentIntent | POST /api/payment/paypal/payment-intent | Gobodo.DefaultApi | doEndPoint | GET / | Gobodo.DefaultApi | get12 | GET /api/clients | Gobodo.DefaultApi | get13 | GET /api/clients/{id} | Gobodo.DefaultApi | get2 | GET /api/payment/paypal | Gobodo.DefaultApi | get3 | GET /api/payment/paypal/{id} | Gobodo.DefaultApi | getApiClientById | GET /api/clients/{key} | Gets an api client by id Gobodo.DefaultApi | getBalance | GET /api/payment/paypal/balance/{accountId} | Gobodo.DefaultApi | handleWebhook | POST /api/payment/paypal/webhook | Gobodo.DefaultApi | resetSecretKey | PUT /api/clients/{key}/resetSecretkey | Resets the secret key of the API Client Gobodo.DocumentPartTypesApi | getAllDocumentPartTypes | GET /entryparttypes | Gobodo.DocumentPartTypesApi | getDocumentPartTypeById | GET /entryparttypes/{id} | Gobodo.DocumentTypesApi | getAllDocumentTypes | GET /entrytypes | Gobodo.DocumentTypesApi | getDocumentTypeById | GET /entrytypes/{id} | Gobodo.DocumentsApi | addDocumentPart | POST /articles/{docid}/entryparts | Gobodo.DocumentsApi | changeStatus | PUT /articles/{id}/status | Gobodo.DocumentsApi | copyDocument | POST /articles/{docid}/copy | Gobodo.DocumentsApi | createDocument | POST /articles | Gobodo.DocumentsApi | deleteDocument | DELETE /articles/{docid} | Delete Document Part Gobodo.DocumentsApi | editDocument | PUT /articles/{docid} | Gobodo.DocumentsApi | get16 | GET /articles | Gobodo.DocumentsApi | getAllDocuments | GET /articles/all | Gobodo.DocumentsApi | getDocumentById | GET /articles/{id} | Gobodo.DocumentsApi | getDocumentPartByPageNumber | GET /articles/{id}/entryparts/{pagenum} | Gobodo.DocumentsApi | getDocumentParts | GET /articles/{id}/entryparts | Gobodo.DocumentsApi | getDocumentsByType | GET /articles/entrytype/{typeid} | Gobodo.EmailsApi | createEmailForPage | POST /emails/page/{pageId} | Creates an email address for a page Gobodo.EmailsApi | createEmailForUser | POST /emails/user/{userId} | Creates an email address for a user Gobodo.EmailsApi | getEmailsByPage | GET /emails/page/{pageId} | Returns all email addresses for a given page Gobodo.EmailsApi | getEmailsByUser | GET /emails/user/{userid} | Returns all email addresses for a given user Gobodo.EntryPartsApi | changeDocPartType | PUT /entryparts/{docpartid}/changetype/{typeid} | Gobodo.EntryPartsApi | copyDocumentPart | POST /entryparts/{docpartid}/copy | Gobodo.EntryPartsApi | createChildDocumentPart | POST /entryparts/{docpartid}/entryparts | Gobodo.EntryPartsApi | createDocumentPart | POST /entryparts | Gobodo.EntryPartsApi | deleteDocPart | DELETE /entryparts/{docpartid} | Delete Document Part Gobodo.EntryPartsApi | get17 | GET /entryparts | Gobodo.EntryPartsApi | getChildDocPartByPageNum | GET /entryparts/{id}/entryparts/{pagenum} | Gobodo.EntryPartsApi | getDocumentPartById | GET /entryparts/{id} | Gobodo.EntryPartsApi | getDocumentPartById1 | GET /entryparts/{id}/entryparts | Gobodo.EntryPartsApi | moveChildPart | PUT /entryparts/{docpartid}/moveto/entrypart/{newdocpartid}/{partindex} | Gobodo.EntryPartsApi | moveDocPart | PUT /entryparts/{docpartid}/moveto/article/{articleid}/{partindex} | Gobodo.EntryPartsApi | updateDocumentPart | PUT /entryparts/{docpartid} | Gobodo.FacebookApi | loginFacebook | POST /auth_facebook | Gobodo.FieldsApi | createActionTypeField | POST /actiontype/{id}/fields | Create a field for an action type Gobodo.FieldsApi | createFieldInContainer | POST /fields/{objecttype}/{objectid} | Create a new field Gobodo.FieldsApi | createFields | POST /fields | Creates new fields Gobodo.FieldsApi | createObjectTypeField | POST /objecttype/{id}/fields | Create a field for an object type Gobodo.FieldsApi | createRelationshipTypeField | POST /relationshiptype/{id}/fields | Create a field for a relationship type Gobodo.FieldsApi | getFieldById | GET /fields/{fieldid} | Get field by id Gobodo.FieldsApi | updateField | PUT /fields/{fieldid} | Create a new field Gobodo.FormsApi | createChildSection | POST /forms/sections/{sectionid}/sections | Create a new Form Gobodo.FormsApi | createForm | POST /forms | Create a new Form Gobodo.FormsApi | createForm2 | PUT /forms/{formid} | Update a form object Gobodo.FormsApi | createForm3 | PUT /forms/sections/{formsectionid} | Update a form object Gobodo.FormsApi | createFormSection | POST /forms/{id}/sections | Create a new Form Gobodo.FormsApi | get19 | GET /forms | Gobodo.FormsApi | get20 | GET /forms/sections | Gobodo.FormsApi | get21 | GET /forms/submissions | Gobodo.FormsApi | getFormById | GET /forms/{id} | Get Form By Id Gobodo.FormsApi | getFormFields | GET /forms/{id}/fields | Gobodo.FormsApi | getFormSectionById | GET /forms/sections/{id} | Get Form By Id Gobodo.FormsApi | getFormSectionFields | GET /forms/sections/{id}/fields | Gobodo.FormsApi | getFormSubmissionById | GET /forms/submissions/{id} | Get Form By Id Gobodo.FormsApi | getRelProperty | GET /forms/submissions/{id}/properties/{prop} | Get Property Gobodo.FunctionsApi | addFunctionConfig | POST /functions/{functionid}/{environment} | Adds a function config Gobodo.FunctionsApi | addFunctionIdsToGraph | PUT /functions/graph/{id}/functions/ids | Add existing functions to graph by IDs Gobodo.FunctionsApi | addFunctionsToGraph | PUT /functions/graph/{id}/functions | Add functions to graph Gobodo.FunctionsApi | addMethodToActionType | POST /functions/actiontype/{actiontypeid}/method | Adds a method to an action type Gobodo.FunctionsApi | addMethodToObjectType | POST /functions/objecttype/{objecttypeid}/method | Adds a method to an object type Gobodo.FunctionsApi | addMethodToRelationshipType | POST /functions/relationshiptype/{reltypeid}/method | Adds a method to an relationship type Gobodo.FunctionsApi | createFunction | POST /functions | Creates a new function Gobodo.FunctionsApi | deleteFunction | DELETE /functions/{functionid} | Deletes a function Gobodo.FunctionsApi | editFunction | PUT /functions/{functionid} | Modifies a function Gobodo.FunctionsApi | editFunctionConfig | PUT /functions/functionconfig/{functionconfigid} | Edits a function config Gobodo.FunctionsApi | getActionTypeMethods | GET /functions/actiontype/{actiontypeid}/methods | Retrieves the methods associated with the ActionType Gobodo.FunctionsApi | getAllGraphFunctions | GET /functions/graph/{id}/functions/all | Get all graph functions Gobodo.FunctionsApi | getFunction | GET /functions/{functionid} | Returns a function Gobodo.FunctionsApi | getFunctionConfig | GET /functions/{functionid}/config/{environment} | Returns the function for the given environment Gobodo.FunctionsApi | getFunctionSubscriptions | GET /functions/{functionid}/subscriptions | Gets the subscriptions of the function Gobodo.FunctionsApi | getGraphFunctionByName | GET /functions/graph/{id}/functions/{functionName} | Get graph function by name Gobodo.FunctionsApi | getGraphFunctions | GET /functions/graph/{id}/functions | Get graph functions Gobodo.FunctionsApi | getObjectTypeMethods | GET /functions/objecttype/{objecttypeid}/methods | Retrieves the methods associated with the Object Type Gobodo.FunctionsApi | getRelationshipTypeMethods | GET /functions/relationshiptype/{reltypeid}/methods | Retrieves the methods associated with the Object Type Gobodo.FunctionsApi | getSchemaFunctionByName | GET /functions/schema/{id}/functions/{functionName} | Gobodo.FunctionsApi | getSchemaFunctions | GET /functions/schema/{id}/functions | Gobodo.FunctionsApi | invokeFunctionGet | GET /functions/{functionid}/invoke | Calls a function Gobodo.FunctionsApi | invokeFunctionPut | PUT /functions/{functionid}/invoke | Calls a function Gobodo.FunctionsApi | subscribeToTopic | PUT /functions/{functionid}/subscriptions | Subscribes to a topic Gobodo.FunctionsApi | updateSchemaFunctions | PUT /functions/schema/{id}/functions | Gobodo.GeocodeApi | createGeocode | POST /geocode | Create Geocode Gobodo.GeocodeApi | geocodeObject | POST /geocode/objects/{objectId} | Geocode Object Gobodo.GeocodeApi | getGeocode | GET /geocode/{id} | Get Geocode by id Gobodo.GobodoManagementApi | addOrganizationMembers | PUT /console/organizations/{organizationId}/members | Add members directly to an organization Gobodo.GobodoManagementApi | addResourceToProject | POST /console/projects/{projectId}/resources/{resourceId} | Add a resource to a project Gobodo.GobodoManagementApi | addSchemaToProject | POST /console/projects/{projectId}/schemas/{schemaId} | Add a schema to a project Gobodo.GobodoManagementApi | createConsoleOrganization | POST /console/organizations | Create a new organization Gobodo.GobodoManagementApi | createConsoleProject | POST /console/projects | Create a new project Gobodo.GobodoManagementApi | deleteConsoleOrganization | DELETE /console/organizations/{organizationId} | Delete an organization Gobodo.GobodoManagementApi | deleteConsoleProject | DELETE /console/projects/{projectId} | Delete a project Gobodo.GobodoManagementApi | getConsoleOrganizationById | GET /console/organizations/{organizationId} | Get an organization by id Gobodo.GobodoManagementApi | getConsoleOrganizations | GET /console/organizations | Get all organizations Gobodo.GobodoManagementApi | getConsoleProjectById | GET /console/projects/{projectId} | Get a project by id Gobodo.GobodoManagementApi | getConsoleProjects | GET /console/projects | Get all projects Gobodo.GobodoManagementApi | getOrganizationAdministrators | GET /console/organizations/{organizationId}/administrators | Get all administrators of an organization Gobodo.GobodoManagementApi | getOrganizationMembers | GET /console/organizations/{organizationId}/members | Get all members of an organization Gobodo.GobodoManagementApi | getProjectSchemas | GET /console/projects/{projectId}/schemas | Get all schemas associated with a project Gobodo.GobodoManagementApi | inviteOrganizationMembers | POST /console/organizations/{organizationId}/invite | Invite members to an organization via email or user IDs Gobodo.GobodoManagementApi | updateConsoleOrganization | PUT /console/organizations/{organizationId} | Update an organization Gobodo.GobodoManagementApi | updateConsoleProject | PUT /console/projects/{projectId} | Update a project Gobodo.GoogleApi | loginGoogle | POST /auth_google | Gobodo.GraphActionTypesApi | addActionEndObjectTypes | PUT /actiontype/{id}/endobjecttypes | Add End Object Types Gobodo.GraphActionTypesApi | addMethodToActionType | POST /functions/actiontype/{actiontypeid}/method | Adds a method to an action type Gobodo.GraphActionTypesApi | addSchemaActionTypes | PUT /schema/{id}/actiontypes | Add Action Types Gobodo.GraphActionTypesApi | createActionType | POST /actiontype | Create Graph Action Type Gobodo.GraphActionTypesApi | createActionTypeField | POST /actiontype/{id}/fields | Create a field for an action type Gobodo.GraphActionTypesApi | deleteActionType | DELETE /actiontype/{id} | Delete Graph Action Type Gobodo.GraphActionTypesApi | getActionObjectTypes | GET /actiontype/{id}/endobjecttypes | Get End Object Types Gobodo.GraphActionTypesApi | getActionTypeById | GET /actiontype/{id} | Get Graph Action Type Gobodo.GraphActionTypesApi | getActionTypeByKey | GET /actiontype/{key} | Get Graph Action Type Gobodo.GraphActionTypesApi | getActionTypeFields | GET /actiontype/{id}/fields | Get action type fields Gobodo.GraphActionTypesApi | getActionTypeMethods | GET /functions/actiontype/{actiontypeid}/methods | Retrieves the methods associated with the ActionType Gobodo.GraphActionTypesApi | getActionTypesInGraph | GET /graph/{id}/actiontypes | Get action types in the graph Gobodo.GraphActionTypesApi | getActionsByType | GET /object | Get Actions By Type Gobodo.GraphActionTypesApi | getAllActionTypes | GET /actiontype/all | Get all action types Gobodo.GraphActionTypesApi | getObjectTypeActionTypes | GET /objecttype/{id}/actiontypes | Get action types for object type Gobodo.GraphActionTypesApi | getSchemaActionTypes | GET /schema/{id}/actiontypes | Get Action Types Gobodo.GraphActionTypesApi | updateActionType | PUT /actiontype/{id} | Update Graph Action Type Gobodo.GraphActionsApi | createActions | POST /object/{id}/actions | Create Actions Gobodo.GraphActionsApi | deleteAction | DELETE /action/{id} | Gobodo.GraphActionsApi | getActionById | GET /action/{id} | Gobodo.GraphActionsApi | getActionProperties | GET /action/{id}/properties | Get Action Properties Gobodo.GraphActionsApi | getActions | GET /object/{id}/actions | Get Actions Gobodo.GraphActionsApi | getActionsByType | GET /object | Get Actions By Type Gobodo.GraphActionsApi | setActionProperties | PUT /action/{id}/properties | Update Action Properties Gobodo.GraphActionsApi | setActionProperty | PUT /action/{id}/properties/{prop} | Update Action Property Gobodo.GraphActionsApi | updateAction | PUT /action/{id} | Update Action Gobodo.GraphObjectTypesApi | addActionEndObjectTypes | PUT /actiontype/{id}/endobjecttypes | Add End Object Types Gobodo.GraphObjectTypesApi | addEndObjectTypes | PUT /relationshiptype/{id}/endobjecttypes | Add End Object Types Gobodo.GraphObjectTypesApi | addMethodToObjectType | POST /functions/objecttype/{objecttypeid}/method | Adds a method to an object type Gobodo.GraphObjectTypesApi | addSchemaObjectTypes | PUT /schema/{id}/objecttypes | Add Object Types Gobodo.GraphObjectTypesApi | addStartObjectTypes | PUT /relationshiptype/{id}/startobjecttypes | Add Start Object Types Gobodo.GraphObjectTypesApi | createObjectType | POST /objecttype | Create Graph Object Type Gobodo.GraphObjectTypesApi | createObjectTypeField | POST /objecttype/{id}/fields | Create a field for an object type Gobodo.GraphObjectTypesApi | deleteObjectType | DELETE /objecttype/{id} | Delete Graph Object Type Gobodo.GraphObjectTypesApi | getActionObjectTypes | GET /actiontype/{id}/endobjecttypes | Get End Object Types Gobodo.GraphObjectTypesApi | getAllObjectTypes | GET /objecttype/all | Get all object types Gobodo.GraphObjectTypesApi | getDefaultObjectTypes | GET /objecttype/default | Get default object types Gobodo.GraphObjectTypesApi | getEndObjectTypes | GET /relationshiptype/{id}/endobjecttypes | Get End Object Types Gobodo.GraphObjectTypesApi | getMyObjectTypes | GET /objecttype/mine | Get my object types Gobodo.GraphObjectTypesApi | getObjectTypeActionTypes | GET /objecttype/{id}/actiontypes | Get action types for object type Gobodo.GraphObjectTypesApi | getObjectTypeById | GET /objecttype/{id} | Get Graph Object Type Gobodo.GraphObjectTypesApi | getObjectTypeByKey | GET /objecttype/{key} | Get Graph Object Type Gobodo.GraphObjectTypesApi | getObjectTypeFields | GET /objecttype/{id}/fields | Get object type fields Gobodo.GraphObjectTypesApi | getObjectTypeIncomingRelationshipTypes | GET /objecttype/{id}/relationshiptypes/in | Get incoming relationship types for object type Gobodo.GraphObjectTypesApi | getObjectTypeMethods | GET /functions/objecttype/{objecttypeid}/methods | Retrieves the methods associated with the Object Type Gobodo.GraphObjectTypesApi | getObjectTypeOutgoingRelationshipTypes | GET /objecttype/{id}/relationshiptypes/out | Get outgoing relationship types for object type Gobodo.GraphObjectTypesApi | getObjectTypesInGraph | GET /graph/{id}/objecttypes | Get object types in the graph Gobodo.GraphObjectTypesApi | getSchemaObjectTypes | GET /schema/{id}/objecttypes | Get Object Types Gobodo.GraphObjectTypesApi | getStartObjectTypes | GET /relationshiptype/{id}/startobjecttypes | Get Start Object Types Gobodo.GraphObjectTypesApi | isObjectTypeOfType | GET /objecttype/{id}/isoftype | Check if Object Type is of Type Gobodo.GraphObjectTypesApi | removeEndObjectTypes | DELETE /relationshiptype/{id}/endobjecttypes | Remove End Object Types Gobodo.GraphObjectTypesApi | removeStartObjectTypes | DELETE /relationshiptype/{id}/startobjecttypes | Remove Start Object Types Gobodo.GraphObjectTypesApi | updateObjectType | PUT /objecttype/{id} | Update Graph Object Type Gobodo.GraphObjectsApi | addLiveMeeting | PUT /live/{objectid}/add | Adds a live meeting to the object Gobodo.GraphObjectsApi | addLiveStream | PUT /live/{objectid}/stream | Adds a live meeting to the object Gobodo.GraphObjectsApi | createActions | POST /object/{id}/actions | Create Actions Gobodo.GraphObjectsApi | createInviteOnObject | POST /invites/{objectid}/invite | Returns an invite by id Gobodo.GraphObjectsApi | createObject | POST /object | Create Objects Gobodo.GraphObjectsApi | createRelationship | POST /object/{id}/relationship | Create a Relationship Gobodo.GraphObjectsApi | createRelationships | POST /object/{id}/relationships | Create Relationships Gobodo.GraphObjectsApi | deleteLike | DELETE /likes/{objectid} | Delete Like Gobodo.GraphObjectsApi | deleteObject | DELETE /object/{id} | Delete Object Gobodo.GraphObjectsApi | dislike | POST /likes/{objectid}/dislike | Dislike an Object Gobodo.GraphObjectsApi | getActions | GET /object/{id}/actions | Get Actions Gobodo.GraphObjectsApi | getActionsByType | GET /object | Get Actions By Type Gobodo.GraphObjectsApi | getAllRelationships | GET /object/{id}/relationships/all | Get All Relationships Gobodo.GraphObjectsApi | getAllRelationshipsByType | GET /object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type Gobodo.GraphObjectsApi | getObjectById | GET /object/{id} | Get Object By Id Gobodo.GraphObjectsApi | getObjectByKey | GET /object/{key} | Get Object By Key Gobodo.GraphObjectsApi | getObjectsInGraph | GET /graph/{id}/objects | Get objects in the graph Gobodo.GraphObjectsApi | getObjectsInGraphByTag | GET /graph/{id}/objects/tag/{tag} | Get graph objects by tag Gobodo.GraphObjectsApi | getObjectsInGraphByType | GET /graph/{id}/objects/type/{type} | Get graph objects by type Gobodo.GraphObjectsApi | getRelationshipsByTypeIn | GET /object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type Gobodo.GraphObjectsApi | getRelationshipsByTypeOut | GET /object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type Gobodo.GraphObjectsApi | getRelationshipsIn | GET /object/{id}/relationships/in | Get Incoming Relationships Gobodo.GraphObjectsApi | getRelationshipsOut | GET /object/{id}/relationships/out | Get Outgoing Relationships Gobodo.GraphObjectsApi | isDisliked | GET /likes/{objectid}/isdisliked | Check if the user has disliked the object Gobodo.GraphObjectsApi | isLiked | GET /likes/{objectid}/isliked | Check if the user has liked the object Gobodo.GraphObjectsApi | isObjectOfType | GET /object/{id}/isoftype | Check if Object is of Type Gobodo.GraphObjectsApi | like | POST /likes/{objectid}/like | Like an Object Gobodo.GraphObjectsApi | setObjectProperties | PUT /object/{id}/properties | Set Multiple Properties Gobodo.GraphObjectsApi | setObjectProperty | PUT /object/{id}/properties/{prop} | Update Property Gobodo.GraphObjectsApi | updateObject | PUT /object/{id} | Update Object Gobodo.GraphRelationshipTypesApi | addEndObjectTypes | PUT /relationshiptype/{id}/endobjecttypes | Add End Object Types Gobodo.GraphRelationshipTypesApi | addMethodToRelationshipType | POST /functions/relationshiptype/{reltypeid}/method | Adds a method to an relationship type Gobodo.GraphRelationshipTypesApi | addSchemaRelationshipTypes | PUT /schema/{id}/relationshiptypes | Add Relationship Types Gobodo.GraphRelationshipTypesApi | addStartObjectTypes | PUT /relationshiptype/{id}/startobjecttypes | Add Start Object Types Gobodo.GraphRelationshipTypesApi | createRelationshipType | POST /relationshiptype | Create Graph Relationship Type Gobodo.GraphRelationshipTypesApi | createRelationshipTypeField | POST /relationshiptype/{id}/fields | Create a field for a relationship type Gobodo.GraphRelationshipTypesApi | deleteRelationshipType | DELETE /relationshiptype/{id} | Delete Graph Relationship Type Gobodo.GraphRelationshipTypesApi | getAllRelationshipTypes | GET /relationshiptype/all | Get all relationship types Gobodo.GraphRelationshipTypesApi | getAllRelationshipsByType | GET /object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type Gobodo.GraphRelationshipTypesApi | getEndObjectTypes | GET /relationshiptype/{id}/endobjecttypes | Get End Object Types Gobodo.GraphRelationshipTypesApi | getObjectTypeIncomingRelationshipTypes | GET /objecttype/{id}/relationshiptypes/in | Get incoming relationship types for object type Gobodo.GraphRelationshipTypesApi | getObjectTypeOutgoingRelationshipTypes | GET /objecttype/{id}/relationshiptypes/out | Get outgoing relationship types for object type Gobodo.GraphRelationshipTypesApi | getRelationshipTypeById | GET /relationshiptype/{id} | Get Graph Relationship Type Gobodo.GraphRelationshipTypesApi | getRelationshipTypeByKey | GET /relationshiptype/{key} | Get Graph Relationship Type Gobodo.GraphRelationshipTypesApi | getRelationshipTypeFields | GET /relationshiptype/{id}/fields | Get relationship type fields Gobodo.GraphRelationshipTypesApi | getRelationshipTypeMethods | GET /functions/relationshiptype/{reltypeid}/methods | Retrieves the methods associated with the Object Type Gobodo.GraphRelationshipTypesApi | getRelationshipTypesInGraph | GET /graph/{id}/relationshiptypes | Get relationship types in the graph Gobodo.GraphRelationshipTypesApi | getRelationshipsByTypeIn | GET /object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type Gobodo.GraphRelationshipTypesApi | getRelationshipsByTypeOut | GET /object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type Gobodo.GraphRelationshipTypesApi | getSchemaRelationshipTypes | GET /schema/{id}/relationshiptypes | Get Relationship Types Gobodo.GraphRelationshipTypesApi | getStartObjectTypes | GET /relationshiptype/{id}/startobjecttypes | Get Start Object Types Gobodo.GraphRelationshipTypesApi | removeEndObjectTypes | DELETE /relationshiptype/{id}/endobjecttypes | Remove End Object Types Gobodo.GraphRelationshipTypesApi | removeStartObjectTypes | DELETE /relationshiptype/{id}/startobjecttypes | Remove Start Object Types Gobodo.GraphRelationshipTypesApi | updateRelationshipType | PUT /relationshiptype/{id} | Update Graph Relationship Type Gobodo.GraphRelationshipsApi | createRelationship | POST /object/{id}/relationship | Create a Relationship Gobodo.GraphRelationshipsApi | createRelationships | POST /object/{id}/relationships | Create Relationships Gobodo.GraphRelationshipsApi | deleteRelationship | DELETE /relationship/{id} | Delete Relationship Gobodo.GraphRelationshipsApi | getAllRelationships | GET /object/{id}/relationships/all | Get All Relationships Gobodo.GraphRelationshipsApi | getAllRelationshipsByType | GET /object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type Gobodo.GraphRelationshipsApi | getRelationshipById | GET /relationship/{id} | Gobodo.GraphRelationshipsApi | getRelationshipProperties | GET /relationship/{id}/properties | Get Relationship Properties Gobodo.GraphRelationshipsApi | getRelationshipsByTypeIn | GET /object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type Gobodo.GraphRelationshipsApi | getRelationshipsByTypeOut | GET /object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type Gobodo.GraphRelationshipsApi | getRelationshipsIn | GET /object/{id}/relationships/in | Get Incoming Relationships Gobodo.GraphRelationshipsApi | getRelationshipsOut | GET /object/{id}/relationships/out | Get Outgoing Relationships Gobodo.GraphRelationshipsApi | setRelProperties | PUT /relationship/{id}/properties | Update Relationship Properties Gobodo.GraphRelationshipsApi | setRelProperty | PUT /relationship/{id}/properties/{prop} | Update Property Gobodo.GraphRelationshipsApi | updateRelationship | PUT /relationship/{id} | Update Relationship Gobodo.GraphSchemasApi | addSchemaActionTypes | PUT /schema/{id}/actiontypes | Add Action Types Gobodo.GraphSchemasApi | addSchemaObjectTypes | PUT /schema/{id}/objecttypes | Add Object Types Gobodo.GraphSchemasApi | addSchemaRelationshipTypes | PUT /schema/{id}/relationshiptypes | Add Relationship Types Gobodo.GraphSchemasApi | addSchemaToProject | POST /console/projects/{projectId}/schemas/{schemaId} | Add a schema to a project Gobodo.GraphSchemasApi | createSchema | POST /schema | Create Schema Gobodo.GraphSchemasApi | getAllSchemas | GET /schema | Get Schemas Gobodo.GraphSchemasApi | getProjectSchemas | GET /console/projects/{projectId}/schemas | Get all schemas associated with a project Gobodo.GraphSchemasApi | getSchemaActionTypes | GET /schema/{id}/actiontypes | Get Action Types Gobodo.GraphSchemasApi | getSchemaById | GET /schema/{id} | Get Schema Gobodo.GraphSchemasApi | getSchemaByKey | GET /schema/{key} | Get Schema Gobodo.GraphSchemasApi | getSchemaFunctionByName | GET /functions/schema/{id}/functions/{functionName} | Gobodo.GraphSchemasApi | getSchemaFunctions | GET /funct