@gobodo/gobodo-api-promise 0.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +794 -0
- package/dist/ApiClient.js +720 -0
- package/dist/api/ActionTypesApi.js +113 -0
- package/dist/api/AdCampaignsApi.js +500 -0
- package/dist/api/AdManagementApi.js +722 -0
- package/dist/api/AdminDataManagementApi.js +111 -0
- package/dist/api/AdsApi.js +384 -0
- package/dist/api/AttachmentsApi.js +465 -0
- package/dist/api/AuthenticationApi.js +418 -0
- package/dist/api/CategoriesApi.js +451 -0
- package/dist/api/CommentsApi.js +520 -0
- package/dist/api/ContentManagementApi.js +1491 -0
- package/dist/api/ConversationsApi.js +559 -0
- package/dist/api/DataSheetImportsApi.js +1066 -0
- package/dist/api/DefaultApi.js +696 -0
- package/dist/api/DocumentsApi.js +807 -0
- package/dist/api/EntryPartsApi.js +847 -0
- package/dist/api/FacebookApi.js +88 -0
- package/dist/api/FieldsApi.js +243 -0
- package/dist/api/FilesApi.js +116 -0
- package/dist/api/FormsApi.js +1136 -0
- package/dist/api/FunctionsApi.js +111 -0
- package/dist/api/GeocodeApi.js +340 -0
- package/dist/api/GoogleApi.js +88 -0
- package/dist/api/GraphActionsApi.js +674 -0
- package/dist/api/GraphObjectTypesApi.js +527 -0
- package/dist/api/GraphObjectsApi.js +4026 -0
- package/dist/api/GraphRelationshipTypesApi.js +1055 -0
- package/dist/api/GraphRelationshipsApi.js +1921 -0
- package/dist/api/GraphSchemasApi.js +459 -0
- package/dist/api/GraphTraversalApi.js +415 -0
- package/dist/api/GraphsApi.js +716 -0
- package/dist/api/GroupsApi.js +731 -0
- package/dist/api/IAMApi.js +268 -0
- package/dist/api/ImagesApi.js +535 -0
- package/dist/api/InvitesApi.js +339 -0
- package/dist/api/LikesApi.js +785 -0
- package/dist/api/LinkedINApi.js +88 -0
- package/dist/api/LiveMeetingsApi.js +175 -0
- package/dist/api/MeetingEventsApi.js +358 -0
- package/dist/api/PagesApi.js +605 -0
- package/dist/api/PostsApi.js +330 -0
- package/dist/api/PrivateMessagesApi.js +965 -0
- package/dist/api/PublicationsApi.js +103 -0
- package/dist/api/ScreensApi.js +224 -0
- package/dist/api/SocialIntegrationApi.js +214 -0
- package/dist/api/StripeAccountsApi.js +2309 -0
- package/dist/api/TagsApi.js +111 -0
- package/dist/api/TemplatesApi.js +224 -0
- package/dist/api/ThemeMappingsApi.js +219 -0
- package/dist/api/TransactionsApi.js +161 -0
- package/dist/api/TwitterApi.js +88 -0
- package/dist/api/UserTagsApi.js +592 -0
- package/dist/api/UsersApi.js +591 -0
- package/dist/api/UtilsApi.js +80 -0
- package/dist/api/VideosApi.js +709 -0
- package/dist/index.js +1301 -0
- package/dist/model/APIClient.js +354 -0
- package/dist/model/AccountSessionInput.js +222 -0
- package/dist/model/AccountSessionResponse.js +171 -0
- package/dist/model/ApplicationPaymentAccountResponse.js +185 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureException.js +265 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCause.js +234 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner.js +303 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner.js +187 -0
- package/dist/model/Article.js +668 -0
- package/dist/model/Authorization.js +166 -0
- package/dist/model/Balance.js +267 -0
- package/dist/model/BalanceDetails.js +164 -0
- package/dist/model/BalanceResponse.js +139 -0
- package/dist/model/BankAccountInfo.js +232 -0
- package/dist/model/CardInfo.js +213 -0
- package/dist/model/Comment.js +495 -0
- package/dist/model/Coordinates.js +129 -0
- package/dist/model/CreateAccountResponse.js +233 -0
- package/dist/model/CreateStripeAccountInput.js +216 -0
- package/dist/model/CreateStripeCustomerInput.js +195 -0
- package/dist/model/CustomerResponse.js +168 -0
- package/dist/model/DataObject.js +129 -0
- package/dist/model/DataSheetImport.js +732 -0
- package/dist/model/DataSheetImportPrivacySettings.js +154 -0
- package/dist/model/DataSheetImportSummary.js +206 -0
- package/dist/model/Document.js +743 -0
- package/dist/model/DocumentPart.js +612 -0
- package/dist/model/DocumentPartType.js +358 -0
- package/dist/model/DocumentType.js +458 -0
- package/dist/model/FieldMapping.js +185 -0
- package/dist/model/Fields.js +737 -0
- package/dist/model/File.js +341 -0
- package/dist/model/FileAttachmentUploadObject.js +341 -0
- package/dist/model/Filter.js +137 -0
- package/dist/model/FilterManager.js +154 -0
- package/dist/model/Form.js +393 -0
- package/dist/model/FormSection.js +304 -0
- package/dist/model/FormSubmission.js +238 -0
- package/dist/model/Geocode.js +191 -0
- package/dist/model/GeocodePayload.js +141 -0
- package/dist/model/GeolocationInput.js +216 -0
- package/dist/model/Graph.js +499 -0
- package/dist/model/GraphAction.js +298 -0
- package/dist/model/GraphDatabaseService.js +254 -0
- package/dist/model/GraphGeocode.js +282 -0
- package/dist/model/GraphIteratorEntryPart.js +129 -0
- package/dist/model/GraphObject.js +454 -0
- package/dist/model/GraphObjectPayload.js +430 -0
- package/dist/model/GraphObjectSchema.js +545 -0
- package/dist/model/GraphObjectType.js +626 -0
- package/dist/model/GraphObjectTypeSchema.js +645 -0
- package/dist/model/GraphOwner.js +158 -0
- package/dist/model/GraphRelationObjectObject.js +273 -0
- package/dist/model/GraphRelationship.js +301 -0
- package/dist/model/GraphRelationshipPayload.js +214 -0
- package/dist/model/GraphRelationshipType.js +675 -0
- package/dist/model/GraphSchema.js +645 -0
- package/dist/model/GraphTraversalInput.js +1125 -0
- package/dist/model/Image.js +449 -0
- package/dist/model/ImageUploadObject.js +449 -0
- package/dist/model/InputPart.js +191 -0
- package/dist/model/InputPartMediaType.js +214 -0
- package/dist/model/Link.js +305 -0
- package/dist/model/LiveStreamInfo.js +167 -0
- package/dist/model/MeetingEvent.js +591 -0
- package/dist/model/MeetingEventTimezone.js +187 -0
- package/dist/model/MeetingInfo.js +220 -0
- package/dist/model/Member.js +525 -0
- package/dist/model/MemberGroupCategory.js +237 -0
- package/dist/model/MemberList.js +96 -0
- package/dist/model/MessageGroup.js +160 -0
- package/dist/model/MultipartBody.js +133 -0
- package/dist/model/Objecttype.js +615 -0
- package/dist/model/Page.js +370 -0
- package/dist/model/PageSchema.js +482 -0
- package/dist/model/Pageable.js +235 -0
- package/dist/model/Path.js +110 -0
- package/dist/model/PaymentAccountObject.js +209 -0
- package/dist/model/PaymentIntentInput.js +214 -0
- package/dist/model/PaymentIntentResponse.js +137 -0
- package/dist/model/PaymentMethod.js +319 -0
- package/dist/model/PaymentMethodInput.js +291 -0
- package/dist/model/PaymentMethodResponse.js +139 -0
- package/dist/model/PaymentMethodsResponse.js +158 -0
- package/dist/model/Payout.js +313 -0
- package/dist/model/PayoutInput.js +347 -0
- package/dist/model/PayoutResponse.js +142 -0
- package/dist/model/Post.js +368 -0
- package/dist/model/PrivateMessage.js +494 -0
- package/dist/model/PrivateMessageConversation.js +520 -0
- package/dist/model/PrivateMessageConversationSchema.js +268 -0
- package/dist/model/Profile.js +191 -0
- package/dist/model/Profiletype.js +210 -0
- package/dist/model/PropertyContainer.js +162 -0
- package/dist/model/PurgeDataDefaultResponseValue.js +151 -0
- package/dist/model/RelationshipMapping.js +264 -0
- package/dist/model/ScreenSchema.js +834 -0
- package/dist/model/SimulcastInfo.js +175 -0
- package/dist/model/SkinField.js +737 -0
- package/dist/model/SocialGroup.js +602 -0
- package/dist/model/SocialGroupType.js +327 -0
- package/dist/model/Sort.js +154 -0
- package/dist/model/SourceTypes.js +154 -0
- package/dist/model/StatusUpdate.js +312 -0
- package/dist/model/StreetAddress.js +224 -0
- package/dist/model/StripeAccount.js +272 -0
- package/dist/model/StripeCustomerAccount.js +212 -0
- package/dist/model/Template.js +272 -0
- package/dist/model/TemplateSchema.js +300 -0
- package/dist/model/ThemeMapping.js +245 -0
- package/dist/model/ThemeMappingPayload.js +239 -0
- package/dist/model/Transaction.js +137 -0
- package/dist/model/Transfer.js +286 -0
- package/dist/model/TransferInput.js +288 -0
- package/dist/model/TransferResponse.js +173 -0
- package/dist/model/TransferResponsePaymentMethodDetails.js +286 -0
- package/dist/model/TraversalRelationResponse.js +176 -0
- package/dist/model/User.js +525 -0
- package/dist/model/UserDataPayload.js +525 -0
- package/dist/model/UserDomain.js +191 -0
- package/dist/model/UserInvite.js +404 -0
- package/dist/model/UserInviteInput.js +245 -0
- package/dist/model/UserSchema.js +525 -0
- package/dist/model/UserTag.js +246 -0
- package/dist/model/Userid.js +133 -0
- package/dist/model/Video.js +632 -0
- package/dist/model/VideoLiveUrl.js +137 -0
- package/dist/model/VideoSchema.js +717 -0
- package/dist/model/VideoUploadObject.js +632 -0
- package/dist/model/ZeusPortalCategory.js +434 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,794 @@
|
|
|
1
|
+
# @gobodo/gobodo-api-promise
|
|
2
|
+
|
|
3
|
+
Gobodo - JavaScript client for @gobodo/gobodo-api-promise
|
|
4
|
+
REST Interface for Gobodo API
|
|
5
|
+
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
6
|
+
|
|
7
|
+
- API version: 0.1.34
|
|
8
|
+
- Package version: 0.1.34
|
|
9
|
+
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
### For [Node.js](https://nodejs.org/)
|
|
14
|
+
|
|
15
|
+
#### npm
|
|
16
|
+
|
|
17
|
+
To publish the library as a [npm](https://www.npmjs.com/), please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).
|
|
18
|
+
|
|
19
|
+
Then install it via:
|
|
20
|
+
|
|
21
|
+
```shell
|
|
22
|
+
npm install @gobodo/gobodo-api-promise --save
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Finally, you need to build the module:
|
|
26
|
+
|
|
27
|
+
```shell
|
|
28
|
+
npm run build
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
##### Local development
|
|
32
|
+
|
|
33
|
+
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:
|
|
34
|
+
|
|
35
|
+
```shell
|
|
36
|
+
npm install
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:
|
|
40
|
+
|
|
41
|
+
```shell
|
|
42
|
+
npm link
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
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:
|
|
46
|
+
|
|
47
|
+
```shell
|
|
48
|
+
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Finally, you need to build the module:
|
|
52
|
+
|
|
53
|
+
```shell
|
|
54
|
+
npm run build
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
#### git
|
|
58
|
+
|
|
59
|
+
If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
60
|
+
then install it via:
|
|
61
|
+
|
|
62
|
+
```shell
|
|
63
|
+
npm install GIT_USER_ID/GIT_REPO_ID --save
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### For browser
|
|
67
|
+
|
|
68
|
+
The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
|
|
69
|
+
the above steps with Node.js and installing browserify with `npm install -g browserify`,
|
|
70
|
+
perform the following (assuming *main.js* is your entry file):
|
|
71
|
+
|
|
72
|
+
```shell
|
|
73
|
+
browserify main.js > bundle.js
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Then include *bundle.js* in the HTML pages.
|
|
77
|
+
|
|
78
|
+
### Webpack Configuration
|
|
79
|
+
|
|
80
|
+
Using Webpack you may encounter the following error: "Module not found: Error:
|
|
81
|
+
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
|
|
82
|
+
the following section to your webpack config:
|
|
83
|
+
|
|
84
|
+
```javascript
|
|
85
|
+
module: {
|
|
86
|
+
rules: [
|
|
87
|
+
{
|
|
88
|
+
parser: {
|
|
89
|
+
amd: false
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Getting Started
|
|
97
|
+
|
|
98
|
+
Please follow the [installation](#installation) instruction and execute the following JS code:
|
|
99
|
+
|
|
100
|
+
```javascript
|
|
101
|
+
var Gobodo = require('@gobodo/gobodo-api-promise');
|
|
102
|
+
|
|
103
|
+
var defaultClient = Gobodo.ApiClient.instance;
|
|
104
|
+
// Configure API key authorization: NexusGraphAPIAuth
|
|
105
|
+
var NexusGraphAPIAuth = defaultClient.authentications['NexusGraphAPIAuth'];
|
|
106
|
+
NexusGraphAPIAuth.apiKey = "YOUR API KEY"
|
|
107
|
+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
|
|
108
|
+
//NexusGraphAPIAuth.apiKeyPrefix['SWAuthorization'] = "Token"
|
|
109
|
+
// Configure API key authorization: NexusGraphAPIKey
|
|
110
|
+
var NexusGraphAPIKey = defaultClient.authentications['NexusGraphAPIKey'];
|
|
111
|
+
NexusGraphAPIKey.apiKey = "YOUR API KEY"
|
|
112
|
+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
|
|
113
|
+
//NexusGraphAPIKey.apiKeyPrefix['apiKey'] = "Token"
|
|
114
|
+
|
|
115
|
+
var api = new Gobodo.ActionTypesApi()
|
|
116
|
+
var id = 789; // {Number}
|
|
117
|
+
var actiontypeid = 789; // {Number}
|
|
118
|
+
var opts = {
|
|
119
|
+
'authorization': "authorization_example", // {String} The authorization token of the logged in user
|
|
120
|
+
'zeusportalPostasApp': 789, // {Number} The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
121
|
+
'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
|
|
122
|
+
'zeusportalPostasSite': 789, // {Number} The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
123
|
+
'transactionid': "transactionid_example" // {String} The id of the transaction this operation is being run in
|
|
124
|
+
};
|
|
125
|
+
api.getActionsByType(id, actiontypeid, opts).then(function(data) {
|
|
126
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
127
|
+
}, function(error) {
|
|
128
|
+
console.error(error);
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
## Documentation for API Endpoints
|
|
135
|
+
|
|
136
|
+
All URIs are relative to *https://test.api.gobodo.io*
|
|
137
|
+
|
|
138
|
+
Class | Method | HTTP request | Description
|
|
139
|
+
------------ | ------------- | ------------- | -------------
|
|
140
|
+
*Gobodo.ActionTypesApi* | [**getActionsByType**](docs/ActionTypesApi.md#getActionsByType) | **GET** /graph/data/object/{id}/actions/{actiontypeid} | Get Actions By Type
|
|
141
|
+
*Gobodo.AdCampaignsApi* | [**createAdCampaign**](docs/AdCampaignsApi.md#createAdCampaign) | **POST** /graph/data/ads/campaigns | Create Ad Campaign
|
|
142
|
+
*Gobodo.AdCampaignsApi* | [**deleteObject**](docs/AdCampaignsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
143
|
+
*Gobodo.AdCampaignsApi* | [**get17**](docs/AdCampaignsApi.md#get17) | **GET** /graph/data/ads/campaigns |
|
|
144
|
+
*Gobodo.AdCampaignsApi* | [**get18**](docs/AdCampaignsApi.md#get18) | **GET** /graph/data/ads/campaigns/{id} |
|
|
145
|
+
*Gobodo.AdCampaignsApi* | [**getFromCat**](docs/AdCampaignsApi.md#getFromCat) | **GET** /graph/data/ads/campaigns/nextfromcategory/{id} |
|
|
146
|
+
*Gobodo.AdCampaignsApi* | [**update**](docs/AdCampaignsApi.md#update) | **PUT** /graph/data/ads/campaigns/{id} |
|
|
147
|
+
*Gobodo.AdCampaignsApi* | [**updateAds**](docs/AdCampaignsApi.md#updateAds) | **POST** /graph/data/ads/campaigns/{id}/ads |
|
|
148
|
+
*Gobodo.AdCampaignsApi* | [**updateSites**](docs/AdCampaignsApi.md#updateSites) | **PUT** /graph/data/ads/campaigns/{id}/sites |
|
|
149
|
+
*Gobodo.AdManagementApi* | [**createAd**](docs/AdManagementApi.md#createAd) | **POST** /graph/data/ads/ads | Create Ad
|
|
150
|
+
*Gobodo.AdManagementApi* | [**createAdCampaign**](docs/AdManagementApi.md#createAdCampaign) | **POST** /graph/data/ads/campaigns | Create Ad Campaign
|
|
151
|
+
*Gobodo.AdManagementApi* | [**get17**](docs/AdManagementApi.md#get17) | **GET** /graph/data/ads/campaigns |
|
|
152
|
+
*Gobodo.AdManagementApi* | [**get18**](docs/AdManagementApi.md#get18) | **GET** /graph/data/ads/campaigns/{id} |
|
|
153
|
+
*Gobodo.AdManagementApi* | [**get19**](docs/AdManagementApi.md#get19) | **GET** /graph/data/ads/ads |
|
|
154
|
+
*Gobodo.AdManagementApi* | [**get20**](docs/AdManagementApi.md#get20) | **GET** /graph/data/ads/ads/{id} |
|
|
155
|
+
*Gobodo.AdManagementApi* | [**getCampaign**](docs/AdManagementApi.md#getCampaign) | **GET** /graph/data/ads/ads/{id}/campaign |
|
|
156
|
+
*Gobodo.AdManagementApi* | [**getFromCat**](docs/AdManagementApi.md#getFromCat) | **GET** /graph/data/ads/campaigns/nextfromcategory/{id} |
|
|
157
|
+
*Gobodo.AdManagementApi* | [**update**](docs/AdManagementApi.md#update) | **PUT** /graph/data/ads/campaigns/{id} |
|
|
158
|
+
*Gobodo.AdManagementApi* | [**update1**](docs/AdManagementApi.md#update1) | **PUT** /graph/data/ads/ads/{id} |
|
|
159
|
+
*Gobodo.AdManagementApi* | [**updateAds**](docs/AdManagementApi.md#updateAds) | **POST** /graph/data/ads/campaigns/{id}/ads |
|
|
160
|
+
*Gobodo.AdManagementApi* | [**updateSites**](docs/AdManagementApi.md#updateSites) | **PUT** /graph/data/ads/campaigns/{id}/sites |
|
|
161
|
+
*Gobodo.AdminDataManagementApi* | [**purgeData**](docs/AdminDataManagementApi.md#purgeData) | **GET** /graph/data/admin/datamanagement/purge/{key}/{days} |
|
|
162
|
+
*Gobodo.AdsApi* | [**createAd**](docs/AdsApi.md#createAd) | **POST** /graph/data/ads/ads | Create Ad
|
|
163
|
+
*Gobodo.AdsApi* | [**deleteObject**](docs/AdsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
164
|
+
*Gobodo.AdsApi* | [**get19**](docs/AdsApi.md#get19) | **GET** /graph/data/ads/ads |
|
|
165
|
+
*Gobodo.AdsApi* | [**get20**](docs/AdsApi.md#get20) | **GET** /graph/data/ads/ads/{id} |
|
|
166
|
+
*Gobodo.AdsApi* | [**getCampaign**](docs/AdsApi.md#getCampaign) | **GET** /graph/data/ads/ads/{id}/campaign |
|
|
167
|
+
*Gobodo.AdsApi* | [**update1**](docs/AdsApi.md#update1) | **PUT** /graph/data/ads/ads/{id} |
|
|
168
|
+
*Gobodo.AttachmentsApi* | [**deleteObject**](docs/AttachmentsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
169
|
+
*Gobodo.AttachmentsApi* | [**get23**](docs/AttachmentsApi.md#get23) | **GET** /graph/data/files |
|
|
170
|
+
*Gobodo.AttachmentsApi* | [**getFileById**](docs/AttachmentsApi.md#getFileById) | **GET** /graph/data/files/{id} | Get File By Id
|
|
171
|
+
*Gobodo.AttachmentsApi* | [**getFiles**](docs/AttachmentsApi.md#getFiles) | **GET** /graph/data/object/{id}/files |
|
|
172
|
+
*Gobodo.AttachmentsApi* | [**updateFile**](docs/AttachmentsApi.md#updateFile) | **PUT** /graph/data/files/{id} | Update File
|
|
173
|
+
*Gobodo.AttachmentsApi* | [**upload**](docs/AttachmentsApi.md#upload) | **POST** /graph/data/files/{id}/upload |
|
|
174
|
+
*Gobodo.AttachmentsApi* | [**uploadFile**](docs/AttachmentsApi.md#uploadFile) | **POST** /graph/data/files/upload | Upload data
|
|
175
|
+
*Gobodo.AuthenticationApi* | [**login**](docs/AuthenticationApi.md#login) | **POST** /graph/data/auth |
|
|
176
|
+
*Gobodo.AuthenticationApi* | [**loginAsApp**](docs/AuthenticationApi.md#loginAsApp) | **POST** /graph/data/auth_as_app |
|
|
177
|
+
*Gobodo.AuthenticationApi* | [**loginAsPage**](docs/AuthenticationApi.md#loginAsPage) | **POST** /graph/data/auth_as_page |
|
|
178
|
+
*Gobodo.AuthenticationApi* | [**loginAsSite**](docs/AuthenticationApi.md#loginAsSite) | **POST** /graph/data/auth_as_site |
|
|
179
|
+
*Gobodo.AuthenticationApi* | [**loginFacebook**](docs/AuthenticationApi.md#loginFacebook) | **POST** /graph/data/auth_facebook |
|
|
180
|
+
*Gobodo.AuthenticationApi* | [**loginGoogle**](docs/AuthenticationApi.md#loginGoogle) | **POST** /graph/data/auth_google |
|
|
181
|
+
*Gobodo.AuthenticationApi* | [**loginLinkedIn**](docs/AuthenticationApi.md#loginLinkedIn) | **POST** /graph/data/auth_linkedin |
|
|
182
|
+
*Gobodo.AuthenticationApi* | [**loginTwitter**](docs/AuthenticationApi.md#loginTwitter) | **POST** /graph/data/auth_twitter |
|
|
183
|
+
*Gobodo.AuthenticationApi* | [**logout**](docs/AuthenticationApi.md#logout) | **POST** /graph/data/signout |
|
|
184
|
+
*Gobodo.CategoriesApi* | [**createCategory**](docs/CategoriesApi.md#createCategory) | **POST** /graph/data/categories | Create Category
|
|
185
|
+
*Gobodo.CategoriesApi* | [**createChildCategory**](docs/CategoriesApi.md#createChildCategory) | **POST** /graph/data/categories/{id}/subcategories | Create a child category
|
|
186
|
+
*Gobodo.CategoriesApi* | [**get24**](docs/CategoriesApi.md#get24) | **GET** /graph/data/categories |
|
|
187
|
+
*Gobodo.CategoriesApi* | [**getCategoryById**](docs/CategoriesApi.md#getCategoryById) | **GET** /graph/data/categories/{id} | Gets a category by id
|
|
188
|
+
*Gobodo.CategoriesApi* | [**getChildCategories**](docs/CategoriesApi.md#getChildCategories) | **GET** /graph/data/categories/{id}/subcategories |
|
|
189
|
+
*Gobodo.CategoriesApi* | [**getRootCategory**](docs/CategoriesApi.md#getRootCategory) | **GET** /graph/data/categories/get/root | Gets the root category
|
|
190
|
+
*Gobodo.CategoriesApi* | [**updateCategory**](docs/CategoriesApi.md#updateCategory) | **POST** /graph/data/categories/{id} | Update Category
|
|
191
|
+
*Gobodo.CommentsApi* | [**createComment**](docs/CommentsApi.md#createComment) | **POST** /graph/data/comments | Create a comment
|
|
192
|
+
*Gobodo.CommentsApi* | [**deleteObject**](docs/CommentsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
193
|
+
*Gobodo.CommentsApi* | [**get25**](docs/CommentsApi.md#get25) | **GET** /graph/data/comments |
|
|
194
|
+
*Gobodo.CommentsApi* | [**getCommentById**](docs/CommentsApi.md#getCommentById) | **GET** /graph/data/comments/{id} | Gets a comment by id
|
|
195
|
+
*Gobodo.CommentsApi* | [**getCommentReplies**](docs/CommentsApi.md#getCommentReplies) | **GET** /graph/data/comments/{id}/replies | Get Replies
|
|
196
|
+
*Gobodo.CommentsApi* | [**getComments**](docs/CommentsApi.md#getComments) | **GET** /graph/data/object/{objectid}/comments |
|
|
197
|
+
*Gobodo.CommentsApi* | [**replyToComment**](docs/CommentsApi.md#replyToComment) | **POST** /graph/data/comments/{id}/replies | Add Replies
|
|
198
|
+
*Gobodo.CommentsApi* | [**updateComment**](docs/CommentsApi.md#updateComment) | **PUT** /graph/data/comments/{id} | Update a comment
|
|
199
|
+
*Gobodo.ContentManagementApi* | [**addDocumentPart**](docs/ContentManagementApi.md#addDocumentPart) | **POST** /graph/data/articles/{docid}/entryparts |
|
|
200
|
+
*Gobodo.ContentManagementApi* | [**changeDocPartType**](docs/ContentManagementApi.md#changeDocPartType) | **PUT** /graph/data/entryparts/{docpartid}/changetype/{typeid} |
|
|
201
|
+
*Gobodo.ContentManagementApi* | [**changeStatus**](docs/ContentManagementApi.md#changeStatus) | **PUT** /graph/data/articles/{id}/status |
|
|
202
|
+
*Gobodo.ContentManagementApi* | [**copyDocument**](docs/ContentManagementApi.md#copyDocument) | **POST** /graph/data/articles/{docid}/copy |
|
|
203
|
+
*Gobodo.ContentManagementApi* | [**copyDocumentPart**](docs/ContentManagementApi.md#copyDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/copy |
|
|
204
|
+
*Gobodo.ContentManagementApi* | [**createChildDocumentPart**](docs/ContentManagementApi.md#createChildDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/entryparts |
|
|
205
|
+
*Gobodo.ContentManagementApi* | [**createDocument**](docs/ContentManagementApi.md#createDocument) | **POST** /graph/data/articles |
|
|
206
|
+
*Gobodo.ContentManagementApi* | [**createDocumentPart**](docs/ContentManagementApi.md#createDocumentPart) | **POST** /graph/data/entryparts |
|
|
207
|
+
*Gobodo.ContentManagementApi* | [**deleteDocPart**](docs/ContentManagementApi.md#deleteDocPart) | **DELETE** /graph/data/entryparts/{docpartid} | Delete Document Part
|
|
208
|
+
*Gobodo.ContentManagementApi* | [**deleteDocument**](docs/ContentManagementApi.md#deleteDocument) | **DELETE** /graph/data/articles/{docid} | Delete Document Part
|
|
209
|
+
*Gobodo.ContentManagementApi* | [**editDocument**](docs/ContentManagementApi.md#editDocument) | **PUT** /graph/data/articles/{docid} |
|
|
210
|
+
*Gobodo.ContentManagementApi* | [**get26**](docs/ContentManagementApi.md#get26) | **GET** /graph/data/articles |
|
|
211
|
+
*Gobodo.ContentManagementApi* | [**get27**](docs/ContentManagementApi.md#get27) | **GET** /graph/data/entryparts |
|
|
212
|
+
*Gobodo.ContentManagementApi* | [**getAllDocuments**](docs/ContentManagementApi.md#getAllDocuments) | **GET** /graph/data/articles/all |
|
|
213
|
+
*Gobodo.ContentManagementApi* | [**getChildDocPartByPageNum**](docs/ContentManagementApi.md#getChildDocPartByPageNum) | **GET** /graph/data/entryparts/{id}/entryparts/{pagenum} |
|
|
214
|
+
*Gobodo.ContentManagementApi* | [**getDocumentById**](docs/ContentManagementApi.md#getDocumentById) | **GET** /graph/data/articles/{id} |
|
|
215
|
+
*Gobodo.ContentManagementApi* | [**getDocumentPartById**](docs/ContentManagementApi.md#getDocumentPartById) | **GET** /graph/data/entryparts/{id} |
|
|
216
|
+
*Gobodo.ContentManagementApi* | [**getDocumentPartById1**](docs/ContentManagementApi.md#getDocumentPartById1) | **GET** /graph/data/entryparts/{id}/entryparts |
|
|
217
|
+
*Gobodo.ContentManagementApi* | [**getDocumentPartByPageNumber**](docs/ContentManagementApi.md#getDocumentPartByPageNumber) | **GET** /graph/data/articles/{id}/entryparts/{pagenum} |
|
|
218
|
+
*Gobodo.ContentManagementApi* | [**getDocumentParts**](docs/ContentManagementApi.md#getDocumentParts) | **GET** /graph/data/articles/{id}/entryparts |
|
|
219
|
+
*Gobodo.ContentManagementApi* | [**getDocumentsByType**](docs/ContentManagementApi.md#getDocumentsByType) | **GET** /graph/data/articles/entrytype/{typeid} |
|
|
220
|
+
*Gobodo.ContentManagementApi* | [**moveChildPart**](docs/ContentManagementApi.md#moveChildPart) | **PUT** /graph/data/entryparts/{docpartid}/moveto/entrypart/{newdocpartid}/{partindex} |
|
|
221
|
+
*Gobodo.ContentManagementApi* | [**moveDocPart**](docs/ContentManagementApi.md#moveDocPart) | **PUT** /graph/data/entryparts/{docpartid}/moveto/article/{articleid}/{partindex} |
|
|
222
|
+
*Gobodo.ContentManagementApi* | [**updateDocumentPart**](docs/ContentManagementApi.md#updateDocumentPart) | **PUT** /graph/data/entryparts/{docpartid} |
|
|
223
|
+
*Gobodo.ConversationsApi* | [**createConversation**](docs/ConversationsApi.md#createConversation) | **POST** /graph/data/privatemessages/conversations | Create conversation(s)
|
|
224
|
+
*Gobodo.ConversationsApi* | [**deleteObject**](docs/ConversationsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
225
|
+
*Gobodo.ConversationsApi* | [**get38**](docs/ConversationsApi.md#get38) | **GET** /graph/data/privatemessages/conversations |
|
|
226
|
+
*Gobodo.ConversationsApi* | [**getAllConversations**](docs/ConversationsApi.md#getAllConversations) | **GET** /graph/data/privatemessages/conversations/all | Get All Conversations
|
|
227
|
+
*Gobodo.ConversationsApi* | [**getChildConversations**](docs/ConversationsApi.md#getChildConversations) | **GET** /graph/data/privatemessages/conversations/{convoid}/childconversations | Get Child Conversations
|
|
228
|
+
*Gobodo.ConversationsApi* | [**getConversationById**](docs/ConversationsApi.md#getConversationById) | **GET** /graph/data/privatemessages/conversations/{id} | Get Conversation by ID
|
|
229
|
+
*Gobodo.ConversationsApi* | [**getConversationParticipants**](docs/ConversationsApi.md#getConversationParticipants) | **GET** /graph/data/privatemessages/conversations/{convoid}/groupedmessages | Get Grouped Messages
|
|
230
|
+
*Gobodo.ConversationsApi* | [**getConversationParticipants1**](docs/ConversationsApi.md#getConversationParticipants1) | **GET** /graph/data/privatemessages/conversations/{convoid}/messages | Get Participants
|
|
231
|
+
*Gobodo.ConversationsApi* | [**getUnreadMessageCount**](docs/ConversationsApi.md#getUnreadMessageCount) | **GET** /graph/data/privatemessages/conversations/newmessagecount | Get the number of unread messages
|
|
232
|
+
*Gobodo.DataSheetImportsApi* | [**addDataSheetImportGeocodeMapping**](docs/DataSheetImportsApi.md#addDataSheetImportGeocodeMapping) | **PUT** /graph/data/datasheetimport/{dsimportid}/geolocateon/{sheetprop} | Geocodes the imported object based on the specified data field in the datasheet
|
|
233
|
+
*Gobodo.DataSheetImportsApi* | [**addDataSheetImportMapping**](docs/DataSheetImportsApi.md#addDataSheetImportMapping) | **PUT** /graph/data/datasheetimport/{dsimportid}/mapping/{sheetprop} | Sets the mapping associated with the sheetprop
|
|
234
|
+
*Gobodo.DataSheetImportsApi* | [**addEndObjectLookup**](docs/DataSheetImportsApi.md#addEndObjectLookup) | **PUT** /graph/data/datasheetimport/{dsimportid}/endobjectlookup | Sets the lookup for the end object in a relationship import
|
|
235
|
+
*Gobodo.DataSheetImportsApi* | [**addStartObjectLookup**](docs/DataSheetImportsApi.md#addStartObjectLookup) | **PUT** /graph/data/datasheetimport/{dsimportid}/startobjectlookup | Sets the lookup for the start object in a relationship import
|
|
236
|
+
*Gobodo.DataSheetImportsApi* | [**createDataSheetImport**](docs/DataSheetImportsApi.md#createDataSheetImport) | **POST** /graph/data/datasheetimport/{containerid}/{reltypeid}/{objecttypeid} | Create a datasheet import
|
|
237
|
+
*Gobodo.DataSheetImportsApi* | [**createRelationshipDataSheetImport**](docs/DataSheetImportsApi.md#createRelationshipDataSheetImport) | **POST** /graph/data/datasheetimport/{containerid}/{reltypeid} | Create a datasheet import for relationships
|
|
238
|
+
*Gobodo.DataSheetImportsApi* | [**get28**](docs/DataSheetImportsApi.md#get28) | **GET** /graph/data/datasheetimport |
|
|
239
|
+
*Gobodo.DataSheetImportsApi* | [**getDataSheetImportById**](docs/DataSheetImportsApi.md#getDataSheetImportById) | **GET** /graph/data/datasheetimport/{dsimportid} | Gets the datasheet import specified by the given id
|
|
240
|
+
*Gobodo.DataSheetImportsApi* | [**getDataSheetImportMapping**](docs/DataSheetImportsApi.md#getDataSheetImportMapping) | **GET** /graph/data/datasheetimport/{dsimportid}/mapping/{sheetprop} | Gets the mapping associated with the sheetprop
|
|
241
|
+
*Gobodo.DataSheetImportsApi* | [**getDataSheetImportPreview**](docs/DataSheetImportsApi.md#getDataSheetImportPreview) | **GET** /graph/data/datasheetimport/{dsimportid}/preview | Gets the preview of the data being imported
|
|
242
|
+
*Gobodo.DataSheetImportsApi* | [**removeDataSheetImportGeocodeMapping**](docs/DataSheetImportsApi.md#removeDataSheetImportGeocodeMapping) | **DELETE** /graph/data/datasheetimport/{dsimportid}/geolocateon | Removes the geolocation mapping field
|
|
243
|
+
*Gobodo.DataSheetImportsApi* | [**removeDataSheetImportMapping**](docs/DataSheetImportsApi.md#removeDataSheetImportMapping) | **DELETE** /graph/data/datasheetimport/{dsimportid}/mapping/{sheetprop} | Removes the mapping associated with the sheetprop
|
|
244
|
+
*Gobodo.DataSheetImportsApi* | [**runDataSheetImport**](docs/DataSheetImportsApi.md#runDataSheetImport) | **POST** /graph/data/datasheetimport/{dsimportid}/run | Run a datasheet import
|
|
245
|
+
*Gobodo.DataSheetImportsApi* | [**setDataSheetImportPrivacy**](docs/DataSheetImportsApi.md#setDataSheetImportPrivacy) | **PUT** /graph/data/datasheetimport/{dsimportid}/privacy | Sets the privacy settings of the generated objects from the import
|
|
246
|
+
*Gobodo.DataSheetImportsApi* | [**updateDataSheetImportFile**](docs/DataSheetImportsApi.md#updateDataSheetImportFile) | **PUT** /graph/data/datasheetimport/{dsimportid}/datasheet | Updates the file used by a datasheet import
|
|
247
|
+
*Gobodo.DefaultApi* | [**addEndObjectTypes**](docs/DefaultApi.md#addEndObjectTypes) | **PUT** /graph/data/actiontype/{id}/endobjecttypes |
|
|
248
|
+
*Gobodo.DefaultApi* | [**createApiClient**](docs/DefaultApi.md#createApiClient) | **POST** /graph/data/api/clients |
|
|
249
|
+
*Gobodo.DefaultApi* | [**doEndPoint**](docs/DefaultApi.md#doEndPoint) | **GET** /graph/data |
|
|
250
|
+
*Gobodo.DefaultApi* | [**get21**](docs/DefaultApi.md#get21) | **GET** /graph/data/api/clients |
|
|
251
|
+
*Gobodo.DefaultApi* | [**get22**](docs/DefaultApi.md#get22) | **GET** /graph/data/api/clients/{id} |
|
|
252
|
+
*Gobodo.DefaultApi* | [**get5**](docs/DefaultApi.md#get5) | **GET** /graph/data/actiontype |
|
|
253
|
+
*Gobodo.DefaultApi* | [**get6**](docs/DefaultApi.md#get6) | **GET** /graph/data/actiontype/{id} |
|
|
254
|
+
*Gobodo.DefaultApi* | [**getApiClientById**](docs/DefaultApi.md#getApiClientById) | **GET** /graph/data/api/clients/{key} | Gets an api client by id
|
|
255
|
+
*Gobodo.DefaultApi* | [**getEndObjectTypes**](docs/DefaultApi.md#getEndObjectTypes) | **GET** /graph/data/actiontype/{id}/endobjecttypes |
|
|
256
|
+
*Gobodo.DefaultApi* | [**getFields**](docs/DefaultApi.md#getFields) | **GET** /graph/data/actiontype/{id}/fields |
|
|
257
|
+
*Gobodo.DefaultApi* | [**resetSecretKey**](docs/DefaultApi.md#resetSecretKey) | **PUT** /graph/data/api/clients/{key}/resetSecretkey | Resets the secret key of the API Client
|
|
258
|
+
*Gobodo.DefaultApi* | [**updateTemplate**](docs/DefaultApi.md#updateTemplate) | **PUT** /graph/data/actiontype/{id}/template |
|
|
259
|
+
*Gobodo.DocumentsApi* | [**addDocumentPart**](docs/DocumentsApi.md#addDocumentPart) | **POST** /graph/data/articles/{docid}/entryparts |
|
|
260
|
+
*Gobodo.DocumentsApi* | [**changeStatus**](docs/DocumentsApi.md#changeStatus) | **PUT** /graph/data/articles/{id}/status |
|
|
261
|
+
*Gobodo.DocumentsApi* | [**copyDocument**](docs/DocumentsApi.md#copyDocument) | **POST** /graph/data/articles/{docid}/copy |
|
|
262
|
+
*Gobodo.DocumentsApi* | [**createDocument**](docs/DocumentsApi.md#createDocument) | **POST** /graph/data/articles |
|
|
263
|
+
*Gobodo.DocumentsApi* | [**deleteDocument**](docs/DocumentsApi.md#deleteDocument) | **DELETE** /graph/data/articles/{docid} | Delete Document Part
|
|
264
|
+
*Gobodo.DocumentsApi* | [**deleteObject**](docs/DocumentsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
265
|
+
*Gobodo.DocumentsApi* | [**editDocument**](docs/DocumentsApi.md#editDocument) | **PUT** /graph/data/articles/{docid} |
|
|
266
|
+
*Gobodo.DocumentsApi* | [**get26**](docs/DocumentsApi.md#get26) | **GET** /graph/data/articles |
|
|
267
|
+
*Gobodo.DocumentsApi* | [**getAllDocuments**](docs/DocumentsApi.md#getAllDocuments) | **GET** /graph/data/articles/all |
|
|
268
|
+
*Gobodo.DocumentsApi* | [**getDocumentById**](docs/DocumentsApi.md#getDocumentById) | **GET** /graph/data/articles/{id} |
|
|
269
|
+
*Gobodo.DocumentsApi* | [**getDocumentPartByPageNumber**](docs/DocumentsApi.md#getDocumentPartByPageNumber) | **GET** /graph/data/articles/{id}/entryparts/{pagenum} |
|
|
270
|
+
*Gobodo.DocumentsApi* | [**getDocumentParts**](docs/DocumentsApi.md#getDocumentParts) | **GET** /graph/data/articles/{id}/entryparts |
|
|
271
|
+
*Gobodo.DocumentsApi* | [**getDocumentsByType**](docs/DocumentsApi.md#getDocumentsByType) | **GET** /graph/data/articles/entrytype/{typeid} |
|
|
272
|
+
*Gobodo.EntryPartsApi* | [**changeDocPartType**](docs/EntryPartsApi.md#changeDocPartType) | **PUT** /graph/data/entryparts/{docpartid}/changetype/{typeid} |
|
|
273
|
+
*Gobodo.EntryPartsApi* | [**copyDocumentPart**](docs/EntryPartsApi.md#copyDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/copy |
|
|
274
|
+
*Gobodo.EntryPartsApi* | [**createChildDocumentPart**](docs/EntryPartsApi.md#createChildDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/entryparts |
|
|
275
|
+
*Gobodo.EntryPartsApi* | [**createDocumentPart**](docs/EntryPartsApi.md#createDocumentPart) | **POST** /graph/data/entryparts |
|
|
276
|
+
*Gobodo.EntryPartsApi* | [**deleteDocPart**](docs/EntryPartsApi.md#deleteDocPart) | **DELETE** /graph/data/entryparts/{docpartid} | Delete Document Part
|
|
277
|
+
*Gobodo.EntryPartsApi* | [**deleteObject**](docs/EntryPartsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
278
|
+
*Gobodo.EntryPartsApi* | [**get27**](docs/EntryPartsApi.md#get27) | **GET** /graph/data/entryparts |
|
|
279
|
+
*Gobodo.EntryPartsApi* | [**getChildDocPartByPageNum**](docs/EntryPartsApi.md#getChildDocPartByPageNum) | **GET** /graph/data/entryparts/{id}/entryparts/{pagenum} |
|
|
280
|
+
*Gobodo.EntryPartsApi* | [**getDocumentPartById**](docs/EntryPartsApi.md#getDocumentPartById) | **GET** /graph/data/entryparts/{id} |
|
|
281
|
+
*Gobodo.EntryPartsApi* | [**getDocumentPartById1**](docs/EntryPartsApi.md#getDocumentPartById1) | **GET** /graph/data/entryparts/{id}/entryparts |
|
|
282
|
+
*Gobodo.EntryPartsApi* | [**moveChildPart**](docs/EntryPartsApi.md#moveChildPart) | **PUT** /graph/data/entryparts/{docpartid}/moveto/entrypart/{newdocpartid}/{partindex} |
|
|
283
|
+
*Gobodo.EntryPartsApi* | [**moveDocPart**](docs/EntryPartsApi.md#moveDocPart) | **PUT** /graph/data/entryparts/{docpartid}/moveto/article/{articleid}/{partindex} |
|
|
284
|
+
*Gobodo.EntryPartsApi* | [**updateDocumentPart**](docs/EntryPartsApi.md#updateDocumentPart) | **PUT** /graph/data/entryparts/{docpartid} |
|
|
285
|
+
*Gobodo.FacebookApi* | [**loginFacebook**](docs/FacebookApi.md#loginFacebook) | **POST** /graph/data/auth_facebook |
|
|
286
|
+
*Gobodo.FieldsApi* | [**createFieldInContainer**](docs/FieldsApi.md#createFieldInContainer) | **POST** /graph/data/fields/{objecttype}/{objectid} | Create a new field
|
|
287
|
+
*Gobodo.FieldsApi* | [**createFields**](docs/FieldsApi.md#createFields) | **POST** /graph/data/fields | Creates new fields
|
|
288
|
+
*Gobodo.FieldsApi* | [**updateField**](docs/FieldsApi.md#updateField) | **PUT** /graph/data/fields/{fieldid} | Create a new field
|
|
289
|
+
*Gobodo.FilesApi* | [**attachFile**](docs/FilesApi.md#attachFile) | **POST** /graph/data/object/{id}/attachfile |
|
|
290
|
+
*Gobodo.FormsApi* | [**createChildSection**](docs/FormsApi.md#createChildSection) | **POST** /graph/data/forms/sections/{sectionid}/sections | Create a new Form
|
|
291
|
+
*Gobodo.FormsApi* | [**createForm**](docs/FormsApi.md#createForm) | **POST** /graph/data/forms | Create a new Form
|
|
292
|
+
*Gobodo.FormsApi* | [**createForm2**](docs/FormsApi.md#createForm2) | **PUT** /graph/data/forms/{formid} | Update a form object
|
|
293
|
+
*Gobodo.FormsApi* | [**createForm3**](docs/FormsApi.md#createForm3) | **PUT** /graph/data/forms/sections/{formsectionid} | Update a form object
|
|
294
|
+
*Gobodo.FormsApi* | [**createFormSection**](docs/FormsApi.md#createFormSection) | **POST** /graph/data/forms/{id}/sections | Create a new Form
|
|
295
|
+
*Gobodo.FormsApi* | [**deleteRelationship1**](docs/FormsApi.md#deleteRelationship1) | **DELETE** /graph/data/forms/submissions/{id} | Delete Relationship
|
|
296
|
+
*Gobodo.FormsApi* | [**get29**](docs/FormsApi.md#get29) | **GET** /graph/data/forms |
|
|
297
|
+
*Gobodo.FormsApi* | [**get30**](docs/FormsApi.md#get30) | **GET** /graph/data/forms/sections |
|
|
298
|
+
*Gobodo.FormsApi* | [**get31**](docs/FormsApi.md#get31) | **GET** /graph/data/forms/submissions |
|
|
299
|
+
*Gobodo.FormsApi* | [**getFormById**](docs/FormsApi.md#getFormById) | **GET** /graph/data/forms/{id} | Get Form By Id
|
|
300
|
+
*Gobodo.FormsApi* | [**getFormFields**](docs/FormsApi.md#getFormFields) | **GET** /graph/data/forms/{id}/fields |
|
|
301
|
+
*Gobodo.FormsApi* | [**getFormSectionById**](docs/FormsApi.md#getFormSectionById) | **GET** /graph/data/forms/sections/{id} | Get Form By Id
|
|
302
|
+
*Gobodo.FormsApi* | [**getFormSectionFields**](docs/FormsApi.md#getFormSectionFields) | **GET** /graph/data/forms/sections/{id}/fields |
|
|
303
|
+
*Gobodo.FormsApi* | [**getFormSubmissionById**](docs/FormsApi.md#getFormSubmissionById) | **GET** /graph/data/forms/submissions/{id} | Get Form By Id
|
|
304
|
+
*Gobodo.FormsApi* | [**getRelProperties1**](docs/FormsApi.md#getRelProperties1) | **GET** /graph/data/forms/submissions/{id}/properties | Get Properties
|
|
305
|
+
*Gobodo.FormsApi* | [**getRelProperty1**](docs/FormsApi.md#getRelProperty1) | **GET** /graph/data/forms/submissions/{id}/properties/{prop} | Get Property
|
|
306
|
+
*Gobodo.FormsApi* | [**setRelProperties1**](docs/FormsApi.md#setRelProperties1) | **PUT** /graph/data/forms/submissions/{id}/properties | Set Multiple Properties
|
|
307
|
+
*Gobodo.FormsApi* | [**setRelProperty1**](docs/FormsApi.md#setRelProperty1) | **PUT** /graph/data/forms/submissions/{id}/properties/{prop} | Update Property
|
|
308
|
+
*Gobodo.FunctionsApi* | [**doPostFunction**](docs/FunctionsApi.md#doPostFunction) | **POST** /graph/data/object/{id}/function/{function} |
|
|
309
|
+
*Gobodo.GeocodeApi* | [**createGeocodes**](docs/GeocodeApi.md#createGeocodes) | **POST** /graph/data/object/{id}/geocode |
|
|
310
|
+
*Gobodo.GeocodeApi* | [**deleteGeocode**](docs/GeocodeApi.md#deleteGeocode) | **DELETE** /graph/data/object/{id}/geocode/{geocodeid} |
|
|
311
|
+
*Gobodo.GeocodeApi* | [**get2**](docs/GeocodeApi.md#get2) | **GET** /graph/data/geocode |
|
|
312
|
+
*Gobodo.GeocodeApi* | [**get3**](docs/GeocodeApi.md#get3) | **GET** /graph/data/geocode/{id} |
|
|
313
|
+
*Gobodo.GeocodeApi* | [**getGeocodes**](docs/GeocodeApi.md#getGeocodes) | **GET** /graph/data/object/{id}/geocode |
|
|
314
|
+
*Gobodo.GoogleApi* | [**loginGoogle**](docs/GoogleApi.md#loginGoogle) | **POST** /graph/data/auth_google |
|
|
315
|
+
*Gobodo.GraphActionsApi* | [**createActions**](docs/GraphActionsApi.md#createActions) | **POST** /graph/data/object/{id}/actions |
|
|
316
|
+
*Gobodo.GraphActionsApi* | [**deleteAction**](docs/GraphActionsApi.md#deleteAction) | **DELETE** /graph/data/action/{id} | Delete Action
|
|
317
|
+
*Gobodo.GraphActionsApi* | [**get4**](docs/GraphActionsApi.md#get4) | **GET** /graph/data/action |
|
|
318
|
+
*Gobodo.GraphActionsApi* | [**getActionById**](docs/GraphActionsApi.md#getActionById) | **GET** /graph/data/action/{id} |
|
|
319
|
+
*Gobodo.GraphActionsApi* | [**getActionProperties**](docs/GraphActionsApi.md#getActionProperties) | **GET** /graph/data/action/{id}/properties | Get Properties
|
|
320
|
+
*Gobodo.GraphActionsApi* | [**getActionProperty**](docs/GraphActionsApi.md#getActionProperty) | **GET** /graph/data/action/{id}/properties/{prop} | Get Property
|
|
321
|
+
*Gobodo.GraphActionsApi* | [**getActions**](docs/GraphActionsApi.md#getActions) | **GET** /graph/data/object/{id}/actions | Get Actions
|
|
322
|
+
*Gobodo.GraphActionsApi* | [**getActionsByType**](docs/GraphActionsApi.md#getActionsByType) | **GET** /graph/data/object/{id}/actions/{actiontypeid} | Get Actions By Type
|
|
323
|
+
*Gobodo.GraphActionsApi* | [**setActionProperties**](docs/GraphActionsApi.md#setActionProperties) | **PUT** /graph/data/action/{id}/properties | Set Multiple Properties
|
|
324
|
+
*Gobodo.GraphActionsApi* | [**setActionProperty**](docs/GraphActionsApi.md#setActionProperty) | **PUT** /graph/data/action/{id}/properties/{prop} | Update Property
|
|
325
|
+
*Gobodo.GraphObjectTypesApi* | [**addPolicies**](docs/GraphObjectTypesApi.md#addPolicies) | **POST** /graph/data/objecttype/{id}/policies |
|
|
326
|
+
*Gobodo.GraphObjectTypesApi* | [**get10**](docs/GraphObjectTypesApi.md#get10) | **GET** /graph/data/objecttype/{id} |
|
|
327
|
+
*Gobodo.GraphObjectTypesApi* | [**get8**](docs/GraphObjectTypesApi.md#get8) | **GET** /graph/data/objecttype |
|
|
328
|
+
*Gobodo.GraphObjectTypesApi* | [**get9**](docs/GraphObjectTypesApi.md#get9) | **GET** /graph/data/objecttype/{key} |
|
|
329
|
+
*Gobodo.GraphObjectTypesApi* | [**getAllObjectTypes**](docs/GraphObjectTypesApi.md#getAllObjectTypes) | **GET** /graph/data/objecttype/all |
|
|
330
|
+
*Gobodo.GraphObjectTypesApi* | [**getDefaultObjectTypes**](docs/GraphObjectTypesApi.md#getDefaultObjectTypes) | **GET** /graph/data/objecttype/default |
|
|
331
|
+
*Gobodo.GraphObjectTypesApi* | [**getFields1**](docs/GraphObjectTypesApi.md#getFields1) | **GET** /graph/data/objecttype/{id}/fields |
|
|
332
|
+
*Gobodo.GraphObjectTypesApi* | [**getMyObjectTypes**](docs/GraphObjectTypesApi.md#getMyObjectTypes) | **GET** /graph/data/objecttype/mine |
|
|
333
|
+
*Gobodo.GraphObjectTypesApi* | [**updateTemplate1**](docs/GraphObjectTypesApi.md#updateTemplate1) | **PUT** /graph/data/objecttype/{id}/template |
|
|
334
|
+
*Gobodo.GraphObjectsApi* | [**addLiveMeeting**](docs/GraphObjectsApi.md#addLiveMeeting) | **PUT** /graph/data/live/{objectid}/add | Adds a live meeting to the object
|
|
335
|
+
*Gobodo.GraphObjectsApi* | [**addLiveStream**](docs/GraphObjectsApi.md#addLiveStream) | **PUT** /graph/data/live/{objectid}/stream | Adds a live meeting to the object
|
|
336
|
+
*Gobodo.GraphObjectsApi* | [**attachFile**](docs/GraphObjectsApi.md#attachFile) | **POST** /graph/data/object/{id}/attachfile |
|
|
337
|
+
*Gobodo.GraphObjectsApi* | [**attachImage**](docs/GraphObjectsApi.md#attachImage) | **POST** /graph/data/object/{id}/attachimage |
|
|
338
|
+
*Gobodo.GraphObjectsApi* | [**createActions**](docs/GraphObjectsApi.md#createActions) | **POST** /graph/data/object/{id}/actions |
|
|
339
|
+
*Gobodo.GraphObjectsApi* | [**createAddObjectsToGraph**](docs/GraphObjectsApi.md#createAddObjectsToGraph) | **PUT** /graph/data/graph/{id}/objects | Adds objects to the graph
|
|
340
|
+
*Gobodo.GraphObjectsApi* | [**createGeocodes**](docs/GraphObjectsApi.md#createGeocodes) | **POST** /graph/data/object/{id}/geocode |
|
|
341
|
+
*Gobodo.GraphObjectsApi* | [**createInviteOnObject**](docs/GraphObjectsApi.md#createInviteOnObject) | **POST** /graph/data/invites/{objectid}/invite | Returns an invite by id
|
|
342
|
+
*Gobodo.GraphObjectsApi* | [**createObject**](docs/GraphObjectsApi.md#createObject) | **POST** /graph/data/object | Create Objects
|
|
343
|
+
*Gobodo.GraphObjectsApi* | [**createObjects**](docs/GraphObjectsApi.md#createObjects) | **POST** /graph/data/object/createobjects | Create Objects
|
|
344
|
+
*Gobodo.GraphObjectsApi* | [**createRelationship**](docs/GraphObjectsApi.md#createRelationship) | **POST** /graph/data/object/{id}/relationship | Create a Relationship
|
|
345
|
+
*Gobodo.GraphObjectsApi* | [**createRelationships**](docs/GraphObjectsApi.md#createRelationships) | **POST** /graph/data/object/{id}/relationships | Create Relationships
|
|
346
|
+
*Gobodo.GraphObjectsApi* | [**deleteGeocode**](docs/GraphObjectsApi.md#deleteGeocode) | **DELETE** /graph/data/object/{id}/geocode/{geocodeid} |
|
|
347
|
+
*Gobodo.GraphObjectsApi* | [**deleteLike**](docs/GraphObjectsApi.md#deleteLike) | **DELETE** /graph/data/likes/{objectid} | Delete Like
|
|
348
|
+
*Gobodo.GraphObjectsApi* | [**deleteObject**](docs/GraphObjectsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
349
|
+
*Gobodo.GraphObjectsApi* | [**dislike**](docs/GraphObjectsApi.md#dislike) | **POST** /graph/data/likes/{objectid}/dislike | Dislike an Object
|
|
350
|
+
*Gobodo.GraphObjectsApi* | [**doPostFunction**](docs/GraphObjectsApi.md#doPostFunction) | **POST** /graph/data/object/{id}/function/{function} |
|
|
351
|
+
*Gobodo.GraphObjectsApi* | [**follow**](docs/GraphObjectsApi.md#follow) | **PUT** /graph/data/object/{id}/follow |
|
|
352
|
+
*Gobodo.GraphObjectsApi* | [**get7**](docs/GraphObjectsApi.md#get7) | **GET** /graph/data/object |
|
|
353
|
+
*Gobodo.GraphObjectsApi* | [**getActions**](docs/GraphObjectsApi.md#getActions) | **GET** /graph/data/object/{id}/actions | Get Actions
|
|
354
|
+
*Gobodo.GraphObjectsApi* | [**getActionsByType**](docs/GraphObjectsApi.md#getActionsByType) | **GET** /graph/data/object/{id}/actions/{actiontypeid} | Get Actions By Type
|
|
355
|
+
*Gobodo.GraphObjectsApi* | [**getAllRelationships**](docs/GraphObjectsApi.md#getAllRelationships) | **GET** /graph/data/object/{id}/relationships/all | Get All Relationships
|
|
356
|
+
*Gobodo.GraphObjectsApi* | [**getAllRelationshipsByType**](docs/GraphObjectsApi.md#getAllRelationshipsByType) | **GET** /graph/data/object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type
|
|
357
|
+
*Gobodo.GraphObjectsApi* | [**getComments**](docs/GraphObjectsApi.md#getComments) | **GET** /graph/data/object/{objectid}/comments |
|
|
358
|
+
*Gobodo.GraphObjectsApi* | [**getDataSheetImports**](docs/GraphObjectsApi.md#getDataSheetImports) | **GET** /graph/data/object/{objectid}/datasheetimports | Get Related Objects
|
|
359
|
+
*Gobodo.GraphObjectsApi* | [**getEvents**](docs/GraphObjectsApi.md#getEvents) | **GET** /graph/data/object/{id}/events | Get Events
|
|
360
|
+
*Gobodo.GraphObjectsApi* | [**getEventsDateRange**](docs/GraphObjectsApi.md#getEventsDateRange) | **GET** /graph/data/object/{id}/events/{startdate}:{enddate} | Get Events Date Range
|
|
361
|
+
*Gobodo.GraphObjectsApi* | [**getEventsFuture**](docs/GraphObjectsApi.md#getEventsFuture) | **GET** /graph/data/object/{id}/events/future | Get Events Future
|
|
362
|
+
*Gobodo.GraphObjectsApi* | [**getEventsPast**](docs/GraphObjectsApi.md#getEventsPast) | **GET** /graph/data/object/{id}/events/past | Get Events
|
|
363
|
+
*Gobodo.GraphObjectsApi* | [**getFiles**](docs/GraphObjectsApi.md#getFiles) | **GET** /graph/data/object/{id}/files |
|
|
364
|
+
*Gobodo.GraphObjectsApi* | [**getGeocodes**](docs/GraphObjectsApi.md#getGeocodes) | **GET** /graph/data/object/{id}/geocode |
|
|
365
|
+
*Gobodo.GraphObjectsApi* | [**getGraphs**](docs/GraphObjectsApi.md#getGraphs) | **GET** /graph/data/object/{id}/graphs |
|
|
366
|
+
*Gobodo.GraphObjectsApi* | [**getImages**](docs/GraphObjectsApi.md#getImages) | **GET** /graph/data/object/{id}/images |
|
|
367
|
+
*Gobodo.GraphObjectsApi* | [**getNewsfeed**](docs/GraphObjectsApi.md#getNewsfeed) | **GET** /graph/data/object/{id}/newsfeed |
|
|
368
|
+
*Gobodo.GraphObjectsApi* | [**getNewsfeedIndexed**](docs/GraphObjectsApi.md#getNewsfeedIndexed) | **GET** /graph/data/object/{id}/newsfeed/{start}-{end} |
|
|
369
|
+
*Gobodo.GraphObjectsApi* | [**getNewsfeedIndexedStart**](docs/GraphObjectsApi.md#getNewsfeedIndexedStart) | **GET** /graph/data/object/{id}/newsfeed/{start} |
|
|
370
|
+
*Gobodo.GraphObjectsApi* | [**getObjectById**](docs/GraphObjectsApi.md#getObjectById) | **GET** /graph/data/object/{id} |
|
|
371
|
+
*Gobodo.GraphObjectsApi* | [**getObjectByKey**](docs/GraphObjectsApi.md#getObjectByKey) | **GET** /graph/data/object/{key} | Get Object By Key
|
|
372
|
+
*Gobodo.GraphObjectsApi* | [**getObjectFromSchema**](docs/GraphObjectsApi.md#getObjectFromSchema) | **GET** /graph/data/object/schema/{schemakey} | Get Object From Schema
|
|
373
|
+
*Gobodo.GraphObjectsApi* | [**getObjectProperties**](docs/GraphObjectsApi.md#getObjectProperties) | **GET** /graph/data/object/{id}/properties | Get Properties
|
|
374
|
+
*Gobodo.GraphObjectsApi* | [**getObjectProperty**](docs/GraphObjectsApi.md#getObjectProperty) | **GET** /graph/data/object/{id}/properties/{prop} | Get Property
|
|
375
|
+
*Gobodo.GraphObjectsApi* | [**getObjectsInGraph**](docs/GraphObjectsApi.md#getObjectsInGraph) | **GET** /graph/data/graph/{id}/objects | Get objects in the graph
|
|
376
|
+
*Gobodo.GraphObjectsApi* | [**getObjectsInGraphByTag**](docs/GraphObjectsApi.md#getObjectsInGraphByTag) | **GET** /graph/data/graph/{id}/objects/tag/{tag} | Get objects in the graph with the given tag
|
|
377
|
+
*Gobodo.GraphObjectsApi* | [**getObjectsInGraphByType**](docs/GraphObjectsApi.md#getObjectsInGraphByType) | **GET** /graph/data/graph/{id}/objects/type/{type} | Get objects in the graph with the given object type
|
|
378
|
+
*Gobodo.GraphObjectsApi* | [**getRelatedObjects**](docs/GraphObjectsApi.md#getRelatedObjects) | **GET** /graph/data/object/{id}/relatedobjects/{reltypeid} | Get Related Objects
|
|
379
|
+
*Gobodo.GraphObjectsApi* | [**getRelatedObjectsIn**](docs/GraphObjectsApi.md#getRelatedObjectsIn) | **GET** /graph/data/object/{id}/relatedobjects/{reltypeid}/in | Get Related Objects
|
|
380
|
+
*Gobodo.GraphObjectsApi* | [**getRelatedObjectsOut**](docs/GraphObjectsApi.md#getRelatedObjectsOut) | **GET** /graph/data/object/{id}/relatedobjects/{reltypeid}/out | Get Related Objects
|
|
381
|
+
*Gobodo.GraphObjectsApi* | [**getRelationshipsByTypeIn**](docs/GraphObjectsApi.md#getRelationshipsByTypeIn) | **GET** /graph/data/object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type
|
|
382
|
+
*Gobodo.GraphObjectsApi* | [**getRelationshipsByTypeOut**](docs/GraphObjectsApi.md#getRelationshipsByTypeOut) | **GET** /graph/data/object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type
|
|
383
|
+
*Gobodo.GraphObjectsApi* | [**getRelationshipsIn**](docs/GraphObjectsApi.md#getRelationshipsIn) | **GET** /graph/data/object/{id}/relationships/in | Get Incoming Relationships
|
|
384
|
+
*Gobodo.GraphObjectsApi* | [**getRelationshipsOut**](docs/GraphObjectsApi.md#getRelationshipsOut) | **GET** /graph/data/object/{id}/relationships/out | Get Outgoing Relationships
|
|
385
|
+
*Gobodo.GraphObjectsApi* | [**getTags**](docs/GraphObjectsApi.md#getTags) | **GET** /graph/data/object/{id}/tags |
|
|
386
|
+
*Gobodo.GraphObjectsApi* | [**getUserTags**](docs/GraphObjectsApi.md#getUserTags) | **GET** /graph/data/object/{id}/usertags |
|
|
387
|
+
*Gobodo.GraphObjectsApi* | [**getVideos**](docs/GraphObjectsApi.md#getVideos) | **GET** /graph/data/object/{id}/videos |
|
|
388
|
+
*Gobodo.GraphObjectsApi* | [**isDisliked**](docs/GraphObjectsApi.md#isDisliked) | **GET** /graph/data/likes/{objectid}/isdisliked | Check if the user has disliked the object
|
|
389
|
+
*Gobodo.GraphObjectsApi* | [**isLiked**](docs/GraphObjectsApi.md#isLiked) | **GET** /graph/data/likes/{objectid}/isliked | Check if the user has liked the object
|
|
390
|
+
*Gobodo.GraphObjectsApi* | [**like**](docs/GraphObjectsApi.md#like) | **POST** /graph/data/likes/{objectid}/like | Like an Object
|
|
391
|
+
*Gobodo.GraphObjectsApi* | [**setObjectProperties**](docs/GraphObjectsApi.md#setObjectProperties) | **PUT** /graph/data/object/{id}/properties | Set Multiple Properties
|
|
392
|
+
*Gobodo.GraphObjectsApi* | [**setObjectProperty**](docs/GraphObjectsApi.md#setObjectProperty) | **PUT** /graph/data/object/{id}/properties/{prop} | Update Property
|
|
393
|
+
*Gobodo.GraphObjectsApi* | [**tagUsers**](docs/GraphObjectsApi.md#tagUsers) | **POST** /graph/data/object/{id}/tagusers |
|
|
394
|
+
*Gobodo.GraphObjectsApi* | [**updateObject**](docs/GraphObjectsApi.md#updateObject) | **PUT** /graph/data/object/{id} | Update an Object
|
|
395
|
+
*Gobodo.GraphObjectsApi* | [**updateTags**](docs/GraphObjectsApi.md#updateTags) | **PUT** /graph/data/object/{id}/tags |
|
|
396
|
+
*Gobodo.GraphObjectsApi* | [**view**](docs/GraphObjectsApi.md#view) | **PUT** /graph/data/object/{objectid}/view | Marks the object as viewed
|
|
397
|
+
*Gobodo.GraphObjectsApi* | [**viewPost**](docs/GraphObjectsApi.md#viewPost) | **POST** /graph/data/object/{id}/view | Marks the object as viewed (HTTP Post Operation)
|
|
398
|
+
*Gobodo.GraphRelationshipTypesApi* | [**addEndObjectTypes1**](docs/GraphRelationshipTypesApi.md#addEndObjectTypes1) | **PUT** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
399
|
+
*Gobodo.GraphRelationshipTypesApi* | [**addStartObjectTypes**](docs/GraphRelationshipTypesApi.md#addStartObjectTypes) | **PUT** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
400
|
+
*Gobodo.GraphRelationshipTypesApi* | [**createRelationshipType**](docs/GraphRelationshipTypesApi.md#createRelationshipType) | **POST** /graph/data/relationshiptype | Create relationshp type
|
|
401
|
+
*Gobodo.GraphRelationshipTypesApi* | [**get12**](docs/GraphRelationshipTypesApi.md#get12) | **GET** /graph/data/relationshiptype |
|
|
402
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getAllRelationshipsByType**](docs/GraphRelationshipTypesApi.md#getAllRelationshipsByType) | **GET** /graph/data/object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type
|
|
403
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getEndObjectTypes1**](docs/GraphRelationshipTypesApi.md#getEndObjectTypes1) | **GET** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
404
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getFields2**](docs/GraphRelationshipTypesApi.md#getFields2) | **GET** /graph/data/relationshiptype/{id}/fields |
|
|
405
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getRelationshipTypeByClassName**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeByClassName) | **GET** /graph/data/relationshiptype/class/{classname} |
|
|
406
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getRelationshipTypeById**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeById) | **GET** /graph/data/relationshiptype/{id} |
|
|
407
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getRelationshipTypeByKey**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeByKey) | **GET** /graph/data/relationshiptype/{key} |
|
|
408
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getRelationshipsByTypeIn**](docs/GraphRelationshipTypesApi.md#getRelationshipsByTypeIn) | **GET** /graph/data/object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type
|
|
409
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getRelationshipsByTypeOut**](docs/GraphRelationshipTypesApi.md#getRelationshipsByTypeOut) | **GET** /graph/data/object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type
|
|
410
|
+
*Gobodo.GraphRelationshipTypesApi* | [**getStartObjectTypes**](docs/GraphRelationshipTypesApi.md#getStartObjectTypes) | **GET** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
411
|
+
*Gobodo.GraphRelationshipTypesApi* | [**removeEndObjectTypes**](docs/GraphRelationshipTypesApi.md#removeEndObjectTypes) | **DELETE** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
412
|
+
*Gobodo.GraphRelationshipTypesApi* | [**removeStartObjectTypes**](docs/GraphRelationshipTypesApi.md#removeStartObjectTypes) | **DELETE** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
413
|
+
*Gobodo.GraphRelationshipTypesApi* | [**updateRelationshipType**](docs/GraphRelationshipTypesApi.md#updateRelationshipType) | **PUT** /graph/data/relationshiptype/{id} | Update a relationshp type
|
|
414
|
+
*Gobodo.GraphRelationshipTypesApi* | [**updateTemplate2**](docs/GraphRelationshipTypesApi.md#updateTemplate2) | **PUT** /graph/data/relationshiptype/{id}/template |
|
|
415
|
+
*Gobodo.GraphRelationshipsApi* | [**addEndObjectTypes1**](docs/GraphRelationshipsApi.md#addEndObjectTypes1) | **PUT** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
416
|
+
*Gobodo.GraphRelationshipsApi* | [**addStartObjectTypes**](docs/GraphRelationshipsApi.md#addStartObjectTypes) | **PUT** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
417
|
+
*Gobodo.GraphRelationshipsApi* | [**createRelationship**](docs/GraphRelationshipsApi.md#createRelationship) | **POST** /graph/data/object/{id}/relationship | Create a Relationship
|
|
418
|
+
*Gobodo.GraphRelationshipsApi* | [**createRelationshipType**](docs/GraphRelationshipsApi.md#createRelationshipType) | **POST** /graph/data/relationshiptype | Create relationshp type
|
|
419
|
+
*Gobodo.GraphRelationshipsApi* | [**createRelationships**](docs/GraphRelationshipsApi.md#createRelationships) | **POST** /graph/data/object/{id}/relationships | Create Relationships
|
|
420
|
+
*Gobodo.GraphRelationshipsApi* | [**deleteRelationship**](docs/GraphRelationshipsApi.md#deleteRelationship) | **DELETE** /graph/data/relationship/{id} | Delete Relationship
|
|
421
|
+
*Gobodo.GraphRelationshipsApi* | [**get11**](docs/GraphRelationshipsApi.md#get11) | **GET** /graph/data/relationship |
|
|
422
|
+
*Gobodo.GraphRelationshipsApi* | [**get12**](docs/GraphRelationshipsApi.md#get12) | **GET** /graph/data/relationshiptype |
|
|
423
|
+
*Gobodo.GraphRelationshipsApi* | [**getAllRelationships**](docs/GraphRelationshipsApi.md#getAllRelationships) | **GET** /graph/data/object/{id}/relationships/all | Get All Relationships
|
|
424
|
+
*Gobodo.GraphRelationshipsApi* | [**getAllRelationshipsByType**](docs/GraphRelationshipsApi.md#getAllRelationshipsByType) | **GET** /graph/data/object/{id}/relationships/all/{reltypeid} | Get All Relationships By Type
|
|
425
|
+
*Gobodo.GraphRelationshipsApi* | [**getEndObjectTypes1**](docs/GraphRelationshipsApi.md#getEndObjectTypes1) | **GET** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
426
|
+
*Gobodo.GraphRelationshipsApi* | [**getFields2**](docs/GraphRelationshipsApi.md#getFields2) | **GET** /graph/data/relationshiptype/{id}/fields |
|
|
427
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelProperties**](docs/GraphRelationshipsApi.md#getRelProperties) | **GET** /graph/data/relationship/{id}/properties | Get Properties
|
|
428
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelProperty**](docs/GraphRelationshipsApi.md#getRelProperty) | **GET** /graph/data/relationship/{id}/properties/{prop} | Get Property
|
|
429
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipById**](docs/GraphRelationshipsApi.md#getRelationshipById) | **GET** /graph/data/relationship/{id} |
|
|
430
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipTypeByClassName**](docs/GraphRelationshipsApi.md#getRelationshipTypeByClassName) | **GET** /graph/data/relationshiptype/class/{classname} |
|
|
431
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipTypeById**](docs/GraphRelationshipsApi.md#getRelationshipTypeById) | **GET** /graph/data/relationshiptype/{id} |
|
|
432
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipTypeByKey**](docs/GraphRelationshipsApi.md#getRelationshipTypeByKey) | **GET** /graph/data/relationshiptype/{key} |
|
|
433
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationships**](docs/GraphRelationshipsApi.md#getRelationships) | **GET** /graph/data/graph/{id}/relationships | Get relationships in the graph
|
|
434
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationships1**](docs/GraphRelationshipsApi.md#getRelationships1) | **GET** /graph/data/graph/{id}/relationships/{type} | Get relationships in the graph with the given object type
|
|
435
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipsByTypeIn**](docs/GraphRelationshipsApi.md#getRelationshipsByTypeIn) | **GET** /graph/data/object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type
|
|
436
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipsByTypeOut**](docs/GraphRelationshipsApi.md#getRelationshipsByTypeOut) | **GET** /graph/data/object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type
|
|
437
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipsIn**](docs/GraphRelationshipsApi.md#getRelationshipsIn) | **GET** /graph/data/object/{id}/relationships/in | Get Incoming Relationships
|
|
438
|
+
*Gobodo.GraphRelationshipsApi* | [**getRelationshipsOut**](docs/GraphRelationshipsApi.md#getRelationshipsOut) | **GET** /graph/data/object/{id}/relationships/out | Get Outgoing Relationships
|
|
439
|
+
*Gobodo.GraphRelationshipsApi* | [**getStartObjectTypes**](docs/GraphRelationshipsApi.md#getStartObjectTypes) | **GET** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
440
|
+
*Gobodo.GraphRelationshipsApi* | [**removeEndObjectTypes**](docs/GraphRelationshipsApi.md#removeEndObjectTypes) | **DELETE** /graph/data/relationshiptype/{id}/endobjecttypes |
|
|
441
|
+
*Gobodo.GraphRelationshipsApi* | [**removeStartObjectTypes**](docs/GraphRelationshipsApi.md#removeStartObjectTypes) | **DELETE** /graph/data/relationshiptype/{id}/startobjecttypes |
|
|
442
|
+
*Gobodo.GraphRelationshipsApi* | [**setRelProperties**](docs/GraphRelationshipsApi.md#setRelProperties) | **PUT** /graph/data/relationship/{id}/properties | Set Multiple Properties
|
|
443
|
+
*Gobodo.GraphRelationshipsApi* | [**setRelProperty**](docs/GraphRelationshipsApi.md#setRelProperty) | **PUT** /graph/data/relationship/{id}/properties/{prop} | Update Property
|
|
444
|
+
*Gobodo.GraphRelationshipsApi* | [**updateRelationshipType**](docs/GraphRelationshipsApi.md#updateRelationshipType) | **PUT** /graph/data/relationshiptype/{id} | Update a relationshp type
|
|
445
|
+
*Gobodo.GraphRelationshipsApi* | [**updateTemplate2**](docs/GraphRelationshipsApi.md#updateTemplate2) | **PUT** /graph/data/relationshiptype/{id}/template |
|
|
446
|
+
*Gobodo.GraphSchemasApi* | [**addSchemas**](docs/GraphSchemasApi.md#addSchemas) | **PUT** /graph/data/graph/{id}/schemas | Adds schemas to the graph
|
|
447
|
+
*Gobodo.GraphSchemasApi* | [**get15**](docs/GraphSchemasApi.md#get15) | **GET** /graph/data/schema |
|
|
448
|
+
*Gobodo.GraphSchemasApi* | [**get16**](docs/GraphSchemasApi.md#get16) | **GET** /graph/data/schema/{id} |
|
|
449
|
+
*Gobodo.GraphSchemasApi* | [**getSchemas**](docs/GraphSchemasApi.md#getSchemas) | **GET** /graph/data/graph/{id}/schemas | Get schemas in the graph
|
|
450
|
+
*Gobodo.GraphSchemasApi* | [**removeSchemas**](docs/GraphSchemasApi.md#removeSchemas) | **DELETE** /graph/data/graph/{id}/schemas | Removes schemas to the graph
|
|
451
|
+
*Gobodo.GraphSchemasApi* | [**updateObjectTypes**](docs/GraphSchemasApi.md#updateObjectTypes) | **PUT** /graph/data/schema/{id}/objecttypes |
|
|
452
|
+
*Gobodo.GraphSchemasApi* | [**updateTemplate3**](docs/GraphSchemasApi.md#updateTemplate3) | **PUT** /graph/data/schema/{id}/template |
|
|
453
|
+
*Gobodo.GraphTraversalApi* | [**traverse**](docs/GraphTraversalApi.md#traverse) | **POST** /graph/data/traverse | Traverses the graph and returns a list of discovered paths
|
|
454
|
+
*Gobodo.GraphTraversalApi* | [**traverseFrom**](docs/GraphTraversalApi.md#traverseFrom) | **POST** /graph/data/traverse/{id}/traverse |
|
|
455
|
+
*Gobodo.GraphTraversalApi* | [**traverseFromFindObjects**](docs/GraphTraversalApi.md#traverseFromFindObjects) | **POST** /graph/data/traverse/{id}/traverseobjects |
|
|
456
|
+
*Gobodo.GraphTraversalApi* | [**traverseFromFindRelationships**](docs/GraphTraversalApi.md#traverseFromFindRelationships) | **POST** /graph/data/traverse/{id}/traverserelationships |
|
|
457
|
+
*Gobodo.GraphTraversalApi* | [**traverseObjects**](docs/GraphTraversalApi.md#traverseObjects) | **POST** /graph/data/traverse/objects | Traverses the graph based on the traversal query provided and returns the discovered objects
|
|
458
|
+
*Gobodo.GraphTraversalApi* | [**traverseRelationships**](docs/GraphTraversalApi.md#traverseRelationships) | **POST** /graph/data/traverse/relationships | Traverses the graph based on the traversal query provided and returns the discovered relationships
|
|
459
|
+
*Gobodo.GraphsApi* | [**addSchemas**](docs/GraphsApi.md#addSchemas) | **PUT** /graph/data/graph/{id}/schemas | Adds schemas to the graph
|
|
460
|
+
*Gobodo.GraphsApi* | [**createAddObjectsToGraph**](docs/GraphsApi.md#createAddObjectsToGraph) | **PUT** /graph/data/graph/{id}/objects | Adds objects to the graph
|
|
461
|
+
*Gobodo.GraphsApi* | [**get13**](docs/GraphsApi.md#get13) | **GET** /graph/data/graph |
|
|
462
|
+
*Gobodo.GraphsApi* | [**get14**](docs/GraphsApi.md#get14) | **GET** /graph/data/graph/{id} |
|
|
463
|
+
*Gobodo.GraphsApi* | [**getObjectsInGraph**](docs/GraphsApi.md#getObjectsInGraph) | **GET** /graph/data/graph/{id}/objects | Get objects in the graph
|
|
464
|
+
*Gobodo.GraphsApi* | [**getObjectsInGraphByTag**](docs/GraphsApi.md#getObjectsInGraphByTag) | **GET** /graph/data/graph/{id}/objects/tag/{tag} | Get objects in the graph with the given tag
|
|
465
|
+
*Gobodo.GraphsApi* | [**getObjectsInGraphByType**](docs/GraphsApi.md#getObjectsInGraphByType) | **GET** /graph/data/graph/{id}/objects/type/{type} | Get objects in the graph with the given object type
|
|
466
|
+
*Gobodo.GraphsApi* | [**getRelationships**](docs/GraphsApi.md#getRelationships) | **GET** /graph/data/graph/{id}/relationships | Get relationships in the graph
|
|
467
|
+
*Gobodo.GraphsApi* | [**getRelationships1**](docs/GraphsApi.md#getRelationships1) | **GET** /graph/data/graph/{id}/relationships/{type} | Get relationships in the graph with the given object type
|
|
468
|
+
*Gobodo.GraphsApi* | [**getSchemas**](docs/GraphsApi.md#getSchemas) | **GET** /graph/data/graph/{id}/schemas | Get schemas in the graph
|
|
469
|
+
*Gobodo.GraphsApi* | [**removeSchemas**](docs/GraphsApi.md#removeSchemas) | **DELETE** /graph/data/graph/{id}/schemas | Removes schemas to the graph
|
|
470
|
+
*Gobodo.GroupsApi* | [**addMembers**](docs/GroupsApi.md#addMembers) | **PUT** /graph/data/groups/{groupid}/addmembers | Adds the users corresponding to the list of userids to the group
|
|
471
|
+
*Gobodo.GroupsApi* | [**createGroup**](docs/GroupsApi.md#createGroup) | **POST** /graph/data/groups | Create Group
|
|
472
|
+
*Gobodo.GroupsApi* | [**editGroup**](docs/GroupsApi.md#editGroup) | **PUT** /graph/data/groups/{id} | Edit Group
|
|
473
|
+
*Gobodo.GroupsApi* | [**get41**](docs/GroupsApi.md#get41) | **GET** /graph/data/groups |
|
|
474
|
+
*Gobodo.GroupsApi* | [**getGroupById**](docs/GroupsApi.md#getGroupById) | **GET** /graph/data/groups/{id} | Get Group By Id
|
|
475
|
+
*Gobodo.GroupsApi* | [**getMembers**](docs/GroupsApi.md#getMembers) | **GET** /graph/data/groups/{groupid}/administrators | Returns the admins in the group
|
|
476
|
+
*Gobodo.GroupsApi* | [**getMembers1**](docs/GroupsApi.md#getMembers1) | **GET** /graph/data/groups/{groupid}/members | Returns the users in the group
|
|
477
|
+
*Gobodo.GroupsApi* | [**joinGroup**](docs/GroupsApi.md#joinGroup) | **PUT** /graph/data/groups/{groupid}/join | Adds the currently logged in user to the group
|
|
478
|
+
*Gobodo.GroupsApi* | [**removeMember**](docs/GroupsApi.md#removeMember) | **DELETE** /graph/data/groups/{groupid}/members/{uid} | Remove the user from the group
|
|
479
|
+
*Gobodo.GroupsApi* | [**setGroupProperties**](docs/GroupsApi.md#setGroupProperties) | **PUT** /graph/data/groups/{id}/properties | Set Multiple Properties
|
|
480
|
+
*Gobodo.GroupsApi* | [**setGroupProperty**](docs/GroupsApi.md#setGroupProperty) | **PUT** /graph/data/groups/{id}/properties/{prop} | Update Property
|
|
481
|
+
*Gobodo.IAMApi* | [**createPolicy**](docs/IAMApi.md#createPolicy) | **POST** /graph/data/iam/policies | Create Policy
|
|
482
|
+
*Gobodo.IAMApi* | [**get35**](docs/IAMApi.md#get35) | **GET** /graph/data/iam/policies |
|
|
483
|
+
*Gobodo.IAMApi* | [**get36**](docs/IAMApi.md#get36) | **GET** /graph/data/iam/policies/{id} |
|
|
484
|
+
*Gobodo.IAMApi* | [**update2**](docs/IAMApi.md#update2) | **PUT** /graph/data/iam/policies/{id} |
|
|
485
|
+
*Gobodo.ImagesApi* | [**attachImage**](docs/ImagesApi.md#attachImage) | **POST** /graph/data/object/{id}/attachimage |
|
|
486
|
+
*Gobodo.ImagesApi* | [**deleteObject**](docs/ImagesApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
487
|
+
*Gobodo.ImagesApi* | [**get32**](docs/ImagesApi.md#get32) | **GET** /graph/data/images |
|
|
488
|
+
*Gobodo.ImagesApi* | [**getImageById**](docs/ImagesApi.md#getImageById) | **GET** /graph/data/images/{id} | Get Image By Id
|
|
489
|
+
*Gobodo.ImagesApi* | [**getImages**](docs/ImagesApi.md#getImages) | **GET** /graph/data/object/{id}/images |
|
|
490
|
+
*Gobodo.ImagesApi* | [**updateImage**](docs/ImagesApi.md#updateImage) | **PUT** /graph/data/images/{id} | Updates an image
|
|
491
|
+
*Gobodo.ImagesApi* | [**upload1**](docs/ImagesApi.md#upload1) | **POST** /graph/data/images/{id}/upload |
|
|
492
|
+
*Gobodo.ImagesApi* | [**uploadImage**](docs/ImagesApi.md#uploadImage) | **POST** /graph/data/images | Upload data
|
|
493
|
+
*Gobodo.InvitesApi* | [**acceptInvite**](docs/InvitesApi.md#acceptInvite) | **PUT** /graph/data/invites/{inviteid}/accept |
|
|
494
|
+
*Gobodo.InvitesApi* | [**createInvite**](docs/InvitesApi.md#createInvite) | **POST** /graph/data/invites | Returns an invite by id
|
|
495
|
+
*Gobodo.InvitesApi* | [**createInviteOnObject**](docs/InvitesApi.md#createInviteOnObject) | **POST** /graph/data/invites/{objectid}/invite | Returns an invite by id
|
|
496
|
+
*Gobodo.InvitesApi* | [**getInviteByCode**](docs/InvitesApi.md#getInviteByCode) | **GET** /graph/data/invites/{inviteCode} | Returns an invite by id
|
|
497
|
+
*Gobodo.InvitesApi* | [**inviteLoggedInUser**](docs/InvitesApi.md#inviteLoggedInUser) | **GET** /graph/data/invites/user/logon_user | Returns the logged inuser
|
|
498
|
+
*Gobodo.LikesApi* | [**deleteAction1**](docs/LikesApi.md#deleteAction1) | **DELETE** /graph/data/likes/{id} | Delete Action
|
|
499
|
+
*Gobodo.LikesApi* | [**deleteLike**](docs/LikesApi.md#deleteLike) | **DELETE** /graph/data/likes/{objectid} | Delete Like
|
|
500
|
+
*Gobodo.LikesApi* | [**dislike**](docs/LikesApi.md#dislike) | **POST** /graph/data/likes/{objectid}/dislike | Dislike an Object
|
|
501
|
+
*Gobodo.LikesApi* | [**get37**](docs/LikesApi.md#get37) | **GET** /graph/data/likes |
|
|
502
|
+
*Gobodo.LikesApi* | [**getActionById1**](docs/LikesApi.md#getActionById1) | **GET** /graph/data/likes/{id} |
|
|
503
|
+
*Gobodo.LikesApi* | [**getActionProperties1**](docs/LikesApi.md#getActionProperties1) | **GET** /graph/data/likes/{id}/properties | Get Properties
|
|
504
|
+
*Gobodo.LikesApi* | [**getActionProperty1**](docs/LikesApi.md#getActionProperty1) | **GET** /graph/data/likes/{id}/properties/{prop} | Get Property
|
|
505
|
+
*Gobodo.LikesApi* | [**isDisliked**](docs/LikesApi.md#isDisliked) | **GET** /graph/data/likes/{objectid}/isdisliked | Check if the user has disliked the object
|
|
506
|
+
*Gobodo.LikesApi* | [**isLiked**](docs/LikesApi.md#isLiked) | **GET** /graph/data/likes/{objectid}/isliked | Check if the user has liked the object
|
|
507
|
+
*Gobodo.LikesApi* | [**like**](docs/LikesApi.md#like) | **POST** /graph/data/likes/{objectid}/like | Like an Object
|
|
508
|
+
*Gobodo.LikesApi* | [**setActionProperties1**](docs/LikesApi.md#setActionProperties1) | **PUT** /graph/data/likes/{id}/properties | Set Multiple Properties
|
|
509
|
+
*Gobodo.LikesApi* | [**setActionProperty1**](docs/LikesApi.md#setActionProperty1) | **PUT** /graph/data/likes/{id}/properties/{prop} | Update Property
|
|
510
|
+
*Gobodo.LinkedINApi* | [**loginLinkedIn**](docs/LinkedINApi.md#loginLinkedIn) | **POST** /graph/data/auth_linkedin |
|
|
511
|
+
*Gobodo.LiveMeetingsApi* | [**addLiveMeeting**](docs/LiveMeetingsApi.md#addLiveMeeting) | **PUT** /graph/data/live/{objectid}/add | Adds a live meeting to the object
|
|
512
|
+
*Gobodo.LiveMeetingsApi* | [**addLiveStream**](docs/LiveMeetingsApi.md#addLiveStream) | **PUT** /graph/data/live/{objectid}/stream | Adds a live meeting to the object
|
|
513
|
+
*Gobodo.MeetingEventsApi* | [**deleteObject**](docs/MeetingEventsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
514
|
+
*Gobodo.MeetingEventsApi* | [**getEvents**](docs/MeetingEventsApi.md#getEvents) | **GET** /graph/data/object/{id}/events | Get Events
|
|
515
|
+
*Gobodo.MeetingEventsApi* | [**getEventsDateRange**](docs/MeetingEventsApi.md#getEventsDateRange) | **GET** /graph/data/object/{id}/events/{startdate}:{enddate} | Get Events Date Range
|
|
516
|
+
*Gobodo.MeetingEventsApi* | [**getEventsFuture**](docs/MeetingEventsApi.md#getEventsFuture) | **GET** /graph/data/object/{id}/events/future | Get Events Future
|
|
517
|
+
*Gobodo.MeetingEventsApi* | [**getEventsPast**](docs/MeetingEventsApi.md#getEventsPast) | **GET** /graph/data/object/{id}/events/past | Get Events
|
|
518
|
+
*Gobodo.PagesApi* | [**createPage**](docs/PagesApi.md#createPage) | **POST** /graph/data/pages | Create Page
|
|
519
|
+
*Gobodo.PagesApi* | [**deleteObject**](docs/PagesApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
520
|
+
*Gobodo.PagesApi* | [**editPage**](docs/PagesApi.md#editPage) | **PUT** /graph/data/pages/{id} | Edit Page
|
|
521
|
+
*Gobodo.PagesApi* | [**get34**](docs/PagesApi.md#get34) | **GET** /graph/data/pages |
|
|
522
|
+
*Gobodo.PagesApi* | [**getOwnedPages**](docs/PagesApi.md#getOwnedPages) | **GET** /graph/data/pages/ownedpages/{uid} | Get Owned Pages
|
|
523
|
+
*Gobodo.PagesApi* | [**getPageById**](docs/PagesApi.md#getPageById) | **GET** /graph/data/pages/{id} | Get Page By Id
|
|
524
|
+
*Gobodo.PagesApi* | [**setPageProfilePicture**](docs/PagesApi.md#setPageProfilePicture) | **PUT** /graph/data/pages/{id}/profilepicture | Edit Page
|
|
525
|
+
*Gobodo.PagesApi* | [**setPageProperties**](docs/PagesApi.md#setPageProperties) | **PUT** /graph/data/pages/{id}/properties | Set Multiple Properties
|
|
526
|
+
*Gobodo.PagesApi* | [**setPageProperty**](docs/PagesApi.md#setPageProperty) | **PUT** /graph/data/pages/{id}/properties/{prop} | Update Property
|
|
527
|
+
*Gobodo.PostsApi* | [**createPost**](docs/PostsApi.md#createPost) | **POST** /graph/data/posts |
|
|
528
|
+
*Gobodo.PostsApi* | [**deleteObject**](docs/PostsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
529
|
+
*Gobodo.PostsApi* | [**get42**](docs/PostsApi.md#get42) | **GET** /graph/data/posts |
|
|
530
|
+
*Gobodo.PostsApi* | [**getPostById**](docs/PostsApi.md#getPostById) | **GET** /graph/data/posts/{id} | Gets a post by id
|
|
531
|
+
*Gobodo.PostsApi* | [**updatePost**](docs/PostsApi.md#updatePost) | **PUT** /graph/data/posts/{id} |
|
|
532
|
+
*Gobodo.PrivateMessagesApi* | [**createBranch**](docs/PrivateMessagesApi.md#createBranch) | **POST** /graph/data/privatemessages/messages/{messageid}/branch |
|
|
533
|
+
*Gobodo.PrivateMessagesApi* | [**createConversation**](docs/PrivateMessagesApi.md#createConversation) | **POST** /graph/data/privatemessages/conversations | Create conversation(s)
|
|
534
|
+
*Gobodo.PrivateMessagesApi* | [**createReply**](docs/PrivateMessagesApi.md#createReply) | **POST** /graph/data/privatemessages/messages/{messageid} |
|
|
535
|
+
*Gobodo.PrivateMessagesApi* | [**deleteMessage**](docs/PrivateMessagesApi.md#deleteMessage) | **DELETE** /graph/data/privatemessages/messages/{messageid}/send |
|
|
536
|
+
*Gobodo.PrivateMessagesApi* | [**deleteObject**](docs/PrivateMessagesApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
537
|
+
*Gobodo.PrivateMessagesApi* | [**get38**](docs/PrivateMessagesApi.md#get38) | **GET** /graph/data/privatemessages/conversations |
|
|
538
|
+
*Gobodo.PrivateMessagesApi* | [**get39**](docs/PrivateMessagesApi.md#get39) | **GET** /graph/data/privatemessages/messages |
|
|
539
|
+
*Gobodo.PrivateMessagesApi* | [**get40**](docs/PrivateMessagesApi.md#get40) | **GET** /graph/data/privatemessages/messages/{id} |
|
|
540
|
+
*Gobodo.PrivateMessagesApi* | [**getAllConversations**](docs/PrivateMessagesApi.md#getAllConversations) | **GET** /graph/data/privatemessages/conversations/all | Get All Conversations
|
|
541
|
+
*Gobodo.PrivateMessagesApi* | [**getChildConversations**](docs/PrivateMessagesApi.md#getChildConversations) | **GET** /graph/data/privatemessages/conversations/{convoid}/childconversations | Get Child Conversations
|
|
542
|
+
*Gobodo.PrivateMessagesApi* | [**getConversationById**](docs/PrivateMessagesApi.md#getConversationById) | **GET** /graph/data/privatemessages/conversations/{id} | Get Conversation by ID
|
|
543
|
+
*Gobodo.PrivateMessagesApi* | [**getConversationParticipants**](docs/PrivateMessagesApi.md#getConversationParticipants) | **GET** /graph/data/privatemessages/conversations/{convoid}/groupedmessages | Get Grouped Messages
|
|
544
|
+
*Gobodo.PrivateMessagesApi* | [**getConversationParticipants1**](docs/PrivateMessagesApi.md#getConversationParticipants1) | **GET** /graph/data/privatemessages/conversations/{convoid}/messages | Get Participants
|
|
545
|
+
*Gobodo.PrivateMessagesApi* | [**getUnreadMessageCount**](docs/PrivateMessagesApi.md#getUnreadMessageCount) | **GET** /graph/data/privatemessages/conversations/newmessagecount | Get the number of unread messages
|
|
546
|
+
*Gobodo.PrivateMessagesApi* | [**updateMessage**](docs/PrivateMessagesApi.md#updateMessage) | **PUT** /graph/data/privatemessages/messages/{messageid}/send |
|
|
547
|
+
*Gobodo.PrivateMessagesApi* | [**updateMessage1**](docs/PrivateMessagesApi.md#updateMessage1) | **PUT** /graph/data/privatemessages/messages/{messageid} |
|
|
548
|
+
*Gobodo.PublicationsApi* | [**deleteObject**](docs/PublicationsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
549
|
+
*Gobodo.ScreensApi* | [**createScreen**](docs/ScreensApi.md#createScreen) | **POST** /graph/data/templates |
|
|
550
|
+
*Gobodo.ScreensApi* | [**editScreen**](docs/ScreensApi.md#editScreen) | **PUT** /graph/data/templates/{screenid} |
|
|
551
|
+
*Gobodo.ScreensApi* | [**getScreenById**](docs/ScreensApi.md#getScreenById) | **GET** /graph/data/templates/{screenId} |
|
|
552
|
+
*Gobodo.SocialIntegrationApi* | [**loginFacebook**](docs/SocialIntegrationApi.md#loginFacebook) | **POST** /graph/data/auth_facebook |
|
|
553
|
+
*Gobodo.SocialIntegrationApi* | [**loginGoogle**](docs/SocialIntegrationApi.md#loginGoogle) | **POST** /graph/data/auth_google |
|
|
554
|
+
*Gobodo.SocialIntegrationApi* | [**loginLinkedIn**](docs/SocialIntegrationApi.md#loginLinkedIn) | **POST** /graph/data/auth_linkedin |
|
|
555
|
+
*Gobodo.SocialIntegrationApi* | [**loginTwitter**](docs/SocialIntegrationApi.md#loginTwitter) | **POST** /graph/data/auth_twitter |
|
|
556
|
+
*Gobodo.StripeAccountsApi* | [**addStripePaymentMethod**](docs/StripeAccountsApi.md#addStripePaymentMethod) | **POST** /graph/data/payments/stripe/paymentmethods | Adds payment methods for the customer stored in stripe
|
|
557
|
+
*Gobodo.StripeAccountsApi* | [**attachCustomerStripePaymentMethod**](docs/StripeAccountsApi.md#attachCustomerStripePaymentMethod) | **PUT** /graph/data/payments/stripe/customer/{customerID}/paymentmethods | Adds payment methods for the customer stored in stripe
|
|
558
|
+
*Gobodo.StripeAccountsApi* | [**attachStripePaymentMethod**](docs/StripeAccountsApi.md#attachStripePaymentMethod) | **PUT** /graph/data/payments/stripe/paymentmethods | Adds payment methods for the customer stored in stripe
|
|
559
|
+
*Gobodo.StripeAccountsApi* | [**createAccountSession**](docs/StripeAccountsApi.md#createAccountSession) | **POST** /graph/data/payments/stripe/accountSession | Creates an Account Session which is used to integrate Stripe's connected UI components
|
|
560
|
+
*Gobodo.StripeAccountsApi* | [**createAndLinkStripeAccount**](docs/StripeAccountsApi.md#createAndLinkStripeAccount) | **POST** /graph/data/payments/stripe/account | Creates a Stripe account for the logged in user
|
|
561
|
+
*Gobodo.StripeAccountsApi* | [**createAndLinkStripeCustomerAccount**](docs/StripeAccountsApi.md#createAndLinkStripeCustomerAccount) | **POST** /graph/data/payments/stripe/customer | Creates a Stripe customer account for the logged in user
|
|
562
|
+
*Gobodo.StripeAccountsApi* | [**createApplicationStripePaymentAccount**](docs/StripeAccountsApi.md#createApplicationStripePaymentAccount) | **POST** /graph/data/payments/stripe/site/{applicationid}/paymentaccount | Creates the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
563
|
+
*Gobodo.StripeAccountsApi* | [**createSiteStripePaymentAccount**](docs/StripeAccountsApi.md#createSiteStripePaymentAccount) | **POST** /graph/data/payments/stripe/site/{siteid}/paymentaccount | Creates the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
564
|
+
*Gobodo.StripeAccountsApi* | [**createStripePaymentIntent**](docs/StripeAccountsApi.md#createStripePaymentIntent) | **POST** /graph/data/payments/stripe/payment | Creates a Payment Intent to initate a Stripe payment
|
|
565
|
+
*Gobodo.StripeAccountsApi* | [**deleteAccount**](docs/StripeAccountsApi.md#deleteAccount) | **DELETE** /graph/data/payments/stripe/account |
|
|
566
|
+
*Gobodo.StripeAccountsApi* | [**deleteStripePaymentMethod**](docs/StripeAccountsApi.md#deleteStripePaymentMethod) | **DELETE** /graph/data/payments/stripe/paymentmethods/{paymentMethodID} | Adds payment methods for the customer stored in stripe
|
|
567
|
+
*Gobodo.StripeAccountsApi* | [**get**](docs/StripeAccountsApi.md#get) | **GET** /graph/data/payments/stripe |
|
|
568
|
+
*Gobodo.StripeAccountsApi* | [**get1**](docs/StripeAccountsApi.md#get1) | **GET** /graph/data/payments/stripe/{id} |
|
|
569
|
+
*Gobodo.StripeAccountsApi* | [**getApplicationStripePaymentAccount**](docs/StripeAccountsApi.md#getApplicationStripePaymentAccount) | **GET** /graph/data/payments/stripe/application/{applicationid}/paymentaccount | Retrieves the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
570
|
+
*Gobodo.StripeAccountsApi* | [**getDefaultCustomerStripePaymentMethod**](docs/StripeAccountsApi.md#getDefaultCustomerStripePaymentMethod) | **GET** /graph/data/payments/stripe/customer/{customerID}/paymentmethods/default | Gets the default payment method
|
|
571
|
+
*Gobodo.StripeAccountsApi* | [**getDefaultStripePaymentMethod**](docs/StripeAccountsApi.md#getDefaultStripePaymentMethod) | **GET** /graph/data/payments/stripe/paymentmethods/default | Gets the default payment method
|
|
572
|
+
*Gobodo.StripeAccountsApi* | [**getSiteStripePaymentAccount**](docs/StripeAccountsApi.md#getSiteStripePaymentAccount) | **GET** /graph/data/payments/stripe/site/{siteid}/paymentaccount | Retrieves the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
573
|
+
*Gobodo.StripeAccountsApi* | [**getStripeAccount**](docs/StripeAccountsApi.md#getStripeAccount) | **GET** /graph/data/payments/stripe/account | Retrieves the Stripe Account For the Logged In User
|
|
574
|
+
*Gobodo.StripeAccountsApi* | [**getStripeAccountBalance**](docs/StripeAccountsApi.md#getStripeAccountBalance) | **GET** /graph/data/payments/stripe/account/{accountID}/balance | Gets the balance of the logged in user
|
|
575
|
+
*Gobodo.StripeAccountsApi* | [**getStripeApiKey**](docs/StripeAccountsApi.md#getStripeApiKey) | **GET** /graph/data/payments/stripe/apikey | Returns the publishable API key for Stripe
|
|
576
|
+
*Gobodo.StripeAccountsApi* | [**getStripeBalance**](docs/StripeAccountsApi.md#getStripeBalance) | **GET** /graph/data/payments/stripe/balance | Gets the balance of the logged in user
|
|
577
|
+
*Gobodo.StripeAccountsApi* | [**getStripeCustomerAccount**](docs/StripeAccountsApi.md#getStripeCustomerAccount) | **GET** /graph/data/payments/stripe/customer | Retrieves the Stripe Customer Account For the Logged In User
|
|
578
|
+
*Gobodo.StripeAccountsApi* | [**getStripeCustomerPaymentMethods**](docs/StripeAccountsApi.md#getStripeCustomerPaymentMethods) | **GET** /graph/data/payments/stripe/customer/{customerID}/paymentmethods | Retrieves the payment methods for the customer stored in stripe
|
|
579
|
+
*Gobodo.StripeAccountsApi* | [**getStripePaymentMethods**](docs/StripeAccountsApi.md#getStripePaymentMethods) | **GET** /graph/data/payments/stripe/paymentmethods | Retrieves the payment methods for the customer stored in stripe
|
|
580
|
+
*Gobodo.StripeAccountsApi* | [**getStripeTransfer**](docs/StripeAccountsApi.md#getStripeTransfer) | **GET** /graph/data/payments/stripe/transfer/{transferID} | Retrieves the transfer payment with the given transferId
|
|
581
|
+
*Gobodo.StripeAccountsApi* | [**getStripeTransferPaymentMethodDetails**](docs/StripeAccountsApi.md#getStripeTransferPaymentMethodDetails) | **GET** /graph/data/payments/stripe/transfer/{transferID}/paymentMethodDetails | Retrieves the transfer payment details with the given transferId
|
|
582
|
+
*Gobodo.StripeAccountsApi* | [**getUserStripeAccount**](docs/StripeAccountsApi.md#getUserStripeAccount) | **GET** /graph/data/payments/stripe/user/{userID}/account | Retrieves the Stripe Account For the Specified User
|
|
583
|
+
*Gobodo.StripeAccountsApi* | [**getUserStripeCustomerAccount**](docs/StripeAccountsApi.md#getUserStripeCustomerAccount) | **GET** /graph/data/payments/stripe/user/{userID}/customer | Retrieves the Stripe Customer Account For the Logged In User
|
|
584
|
+
*Gobodo.StripeAccountsApi* | [**payoutStripeAccount**](docs/StripeAccountsApi.md#payoutStripeAccount) | **POST** /graph/data/payments/stripe/account/{accountID}/payout | Pays out the specified account
|
|
585
|
+
*Gobodo.StripeAccountsApi* | [**setApplicationStripePaymentAccount**](docs/StripeAccountsApi.md#setApplicationStripePaymentAccount) | **PUT** /graph/data/payments/stripe/application/{applicationid}/{accountId}/paymentaccount | Updates the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
586
|
+
*Gobodo.StripeAccountsApi* | [**setDefaultCustomerStripePaymentMethod**](docs/StripeAccountsApi.md#setDefaultCustomerStripePaymentMethod) | **PUT** /graph/data/payments/stripe/customer/{customerID}/paymentmethods/default | Adds payment methods for the customer stored in stripe
|
|
587
|
+
*Gobodo.StripeAccountsApi* | [**setDefaultStripePaymentMethod**](docs/StripeAccountsApi.md#setDefaultStripePaymentMethod) | **PUT** /graph/data/payments/stripe/paymentmethods/default | Sets the default payment method for the customer stored in stripe
|
|
588
|
+
*Gobodo.StripeAccountsApi* | [**setSiteStripePaymentAccount**](docs/StripeAccountsApi.md#setSiteStripePaymentAccount) | **PUT** /graph/data/payments/stripe/site/{siteid}/{accountId}/paymentaccount | Updates the Stripe account that is used to pay for the app/site instance and for recieving payments from end users
|
|
589
|
+
*Gobodo.StripeAccountsApi* | [**stripePayout**](docs/StripeAccountsApi.md#stripePayout) | **POST** /graph/data/payments/stripe/payout | Pays out the account of the logged in user
|
|
590
|
+
*Gobodo.StripeAccountsApi* | [**stripeTransfer**](docs/StripeAccountsApi.md#stripeTransfer) | **POST** /graph/data/payments/stripe/transfer | Sends a transfer payment from the logged in user to the recipient specified in the TransferInput
|
|
591
|
+
*Gobodo.StripeAccountsApi* | [**updateAccountLink**](docs/StripeAccountsApi.md#updateAccountLink) | **PUT** /graph/data/payments/stripe/account/{accountID} | Creates an Account Link which enables the user to update their Stripe account details
|
|
592
|
+
*Gobodo.StripeAccountsApi* | [**updateCustomer**](docs/StripeAccountsApi.md#updateCustomer) | **PUT** /graph/data/payments/stripe/customer/{customerID} | Updates the customer account and returns a client secret to enable user to update their details on Stripe
|
|
593
|
+
*Gobodo.StripeAccountsApi* | [**updateStripePaymentMethod**](docs/StripeAccountsApi.md#updateStripePaymentMethod) | **PUT** /graph/data/payments/stripe/paymentmethods/{paymentMethodID} | Adds payment methods for the customer stored in stripe
|
|
594
|
+
*Gobodo.TagsApi* | [**getObjectsInGraphByTag**](docs/TagsApi.md#getObjectsInGraphByTag) | **GET** /graph/data/graph/{id}/objects/tag/{tag} | Get objects in the graph with the given tag
|
|
595
|
+
*Gobodo.TemplatesApi* | [**createScreen**](docs/TemplatesApi.md#createScreen) | **POST** /graph/data/templates |
|
|
596
|
+
*Gobodo.TemplatesApi* | [**editScreen**](docs/TemplatesApi.md#editScreen) | **PUT** /graph/data/templates/{screenid} |
|
|
597
|
+
*Gobodo.TemplatesApi* | [**getScreenById**](docs/TemplatesApi.md#getScreenById) | **GET** /graph/data/templates/{screenId} |
|
|
598
|
+
*Gobodo.ThemeMappingsApi* | [**addUrlPatterns**](docs/ThemeMappingsApi.md#addUrlPatterns) | **PUT** /graph/data/themes/{themeid}/urlpatterns |
|
|
599
|
+
*Gobodo.ThemeMappingsApi* | [**createTheme**](docs/ThemeMappingsApi.md#createTheme) | **POST** /graph/data/themes | Create a Theme Mapping
|
|
600
|
+
*Gobodo.ThemeMappingsApi* | [**get45**](docs/ThemeMappingsApi.md#get45) | **GET** /graph/data/themes/{themeid} |
|
|
601
|
+
*Gobodo.TransactionsApi* | [**beginTx**](docs/TransactionsApi.md#beginTx) | **POST** /graph/data/transaction | Start a new transaction
|
|
602
|
+
*Gobodo.TransactionsApi* | [**commit**](docs/TransactionsApi.md#commit) | **POST** /graph/data/transaction/{id}/commit | Commits a transaction
|
|
603
|
+
*Gobodo.TransactionsApi* | [**failTx**](docs/TransactionsApi.md#failTx) | **DELETE** /graph/data/transaction/{id} | Marks a transaction for failure
|
|
604
|
+
*Gobodo.TwitterApi* | [**loginTwitter**](docs/TwitterApi.md#loginTwitter) | **POST** /graph/data/auth_twitter |
|
|
605
|
+
*Gobodo.UserTagsApi* | [**deleteRelationship2**](docs/UserTagsApi.md#deleteRelationship2) | **DELETE** /graph/data/usertags/{id} | Delete Relationship
|
|
606
|
+
*Gobodo.UserTagsApi* | [**get43**](docs/UserTagsApi.md#get43) | **GET** /graph/data/usertags |
|
|
607
|
+
*Gobodo.UserTagsApi* | [**getRelProperties2**](docs/UserTagsApi.md#getRelProperties2) | **GET** /graph/data/usertags/{id}/properties | Get Properties
|
|
608
|
+
*Gobodo.UserTagsApi* | [**getRelProperty2**](docs/UserTagsApi.md#getRelProperty2) | **GET** /graph/data/usertags/{id}/properties/{prop} | Get Property
|
|
609
|
+
*Gobodo.UserTagsApi* | [**getRelationshipById1**](docs/UserTagsApi.md#getRelationshipById1) | **GET** /graph/data/usertags/{id} |
|
|
610
|
+
*Gobodo.UserTagsApi* | [**getUserTags**](docs/UserTagsApi.md#getUserTags) | **GET** /graph/data/object/{id}/usertags |
|
|
611
|
+
*Gobodo.UserTagsApi* | [**setRelProperties2**](docs/UserTagsApi.md#setRelProperties2) | **PUT** /graph/data/usertags/{id}/properties | Set Multiple Properties
|
|
612
|
+
*Gobodo.UserTagsApi* | [**setRelProperty2**](docs/UserTagsApi.md#setRelProperty2) | **PUT** /graph/data/usertags/{id}/properties/{prop} | Update Property
|
|
613
|
+
*Gobodo.UserTagsApi* | [**tagUsers**](docs/UserTagsApi.md#tagUsers) | **POST** /graph/data/object/{id}/tagusers |
|
|
614
|
+
*Gobodo.UsersApi* | [**createUser**](docs/UsersApi.md#createUser) | **POST** /graph/data/user | Create a new User
|
|
615
|
+
*Gobodo.UsersApi* | [**get33**](docs/UsersApi.md#get33) | **GET** /graph/data/user |
|
|
616
|
+
*Gobodo.UsersApi* | [**getProfileByType**](docs/UsersApi.md#getProfileByType) | **GET** /graph/data/user/{id}/profile/{type} | Returns the profile of the given type for the specified user if the profile exists
|
|
617
|
+
*Gobodo.UsersApi* | [**getProfiles**](docs/UsersApi.md#getProfiles) | **GET** /graph/data/user/{id}/profiles | Get a list of profiles attached to the user's account
|
|
618
|
+
*Gobodo.UsersApi* | [**getSelf**](docs/UsersApi.md#getSelf) | **GET** /graph/data/user/self | Returns the logged in user
|
|
619
|
+
*Gobodo.UsersApi* | [**getUserById**](docs/UsersApi.md#getUserById) | **GET** /graph/data/user/{id} | Get User By Id
|
|
620
|
+
*Gobodo.UsersApi* | [**getUserByUserName**](docs/UsersApi.md#getUserByUserName) | **GET** /graph/data/user/{username} | Get User By Username
|
|
621
|
+
*Gobodo.UsersApi* | [**setUserProfilePicture**](docs/UsersApi.md#setUserProfilePicture) | **PUT** /graph/data/user/{id}/profilepicture | Set user profile picture
|
|
622
|
+
*Gobodo.UsersApi* | [**updateUser**](docs/UsersApi.md#updateUser) | **PUT** /graph/data/user/{id} | Update User Info
|
|
623
|
+
*Gobodo.UtilsApi* | [**encodeAuth**](docs/UtilsApi.md#encodeAuth) | **POST** /graph/data/utils/encodeauth |
|
|
624
|
+
*Gobodo.VideosApi* | [**deleteObject**](docs/VideosApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
|
|
625
|
+
*Gobodo.VideosApi* | [**get44**](docs/VideosApi.md#get44) | **GET** /graph/data/videos |
|
|
626
|
+
*Gobodo.VideosApi* | [**getVideoById**](docs/VideosApi.md#getVideoById) | **GET** /graph/data/videos/{id} | Gets a video by id
|
|
627
|
+
*Gobodo.VideosApi* | [**getVideos**](docs/VideosApi.md#getVideos) | **GET** /graph/data/object/{id}/videos |
|
|
628
|
+
*Gobodo.VideosApi* | [**setThumbnail**](docs/VideosApi.md#setThumbnail) | **PUT** /graph/data/videos/{id}/setthumbnail |
|
|
629
|
+
*Gobodo.VideosApi* | [**simulcast**](docs/VideosApi.md#simulcast) | **PUT** /graph/data/videos/{id}/simulcast |
|
|
630
|
+
*Gobodo.VideosApi* | [**startLiveStream**](docs/VideosApi.md#startLiveStream) | **POST** /graph/data/videos/livestream |
|
|
631
|
+
*Gobodo.VideosApi* | [**streamMeeting**](docs/VideosApi.md#streamMeeting) | **POST** /graph/data/videos/livestream/{objectid} |
|
|
632
|
+
*Gobodo.VideosApi* | [**updateVideo**](docs/VideosApi.md#updateVideo) | **PUT** /graph/data/videos/{id} |
|
|
633
|
+
*Gobodo.VideosApi* | [**upload2**](docs/VideosApi.md#upload2) | **POST** /graph/data/videos/{id}/upload |
|
|
634
|
+
*Gobodo.VideosApi* | [**uploadVideo**](docs/VideosApi.md#uploadVideo) | **POST** /graph/data/videos/upload | Upload data
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
## Documentation for Models
|
|
638
|
+
|
|
639
|
+
- [Gobodo.APIClient](docs/APIClient.md)
|
|
640
|
+
- [Gobodo.AccountSessionInput](docs/AccountSessionInput.md)
|
|
641
|
+
- [Gobodo.AccountSessionResponse](docs/AccountSessionResponse.md)
|
|
642
|
+
- [Gobodo.ApplicationPaymentAccountResponse](docs/ApplicationPaymentAccountResponse.md)
|
|
643
|
+
- [Gobodo.ApplicationPaymentAccountResponseFailureException](docs/ApplicationPaymentAccountResponseFailureException.md)
|
|
644
|
+
- [Gobodo.ApplicationPaymentAccountResponseFailureExceptionCause](docs/ApplicationPaymentAccountResponseFailureExceptionCause.md)
|
|
645
|
+
- [Gobodo.ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner](docs/ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner.md)
|
|
646
|
+
- [Gobodo.ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner](docs/ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner.md)
|
|
647
|
+
- [Gobodo.Article](docs/Article.md)
|
|
648
|
+
- [Gobodo.Authorization](docs/Authorization.md)
|
|
649
|
+
- [Gobodo.Balance](docs/Balance.md)
|
|
650
|
+
- [Gobodo.BalanceDetails](docs/BalanceDetails.md)
|
|
651
|
+
- [Gobodo.BalanceResponse](docs/BalanceResponse.md)
|
|
652
|
+
- [Gobodo.BankAccountInfo](docs/BankAccountInfo.md)
|
|
653
|
+
- [Gobodo.CardInfo](docs/CardInfo.md)
|
|
654
|
+
- [Gobodo.Comment](docs/Comment.md)
|
|
655
|
+
- [Gobodo.Coordinates](docs/Coordinates.md)
|
|
656
|
+
- [Gobodo.CreateAccountResponse](docs/CreateAccountResponse.md)
|
|
657
|
+
- [Gobodo.CreateStripeAccountInput](docs/CreateStripeAccountInput.md)
|
|
658
|
+
- [Gobodo.CreateStripeCustomerInput](docs/CreateStripeCustomerInput.md)
|
|
659
|
+
- [Gobodo.CustomerResponse](docs/CustomerResponse.md)
|
|
660
|
+
- [Gobodo.DataObject](docs/DataObject.md)
|
|
661
|
+
- [Gobodo.DataSheetImport](docs/DataSheetImport.md)
|
|
662
|
+
- [Gobodo.DataSheetImportPrivacySettings](docs/DataSheetImportPrivacySettings.md)
|
|
663
|
+
- [Gobodo.DataSheetImportSummary](docs/DataSheetImportSummary.md)
|
|
664
|
+
- [Gobodo.Document](docs/Document.md)
|
|
665
|
+
- [Gobodo.DocumentPart](docs/DocumentPart.md)
|
|
666
|
+
- [Gobodo.DocumentPartType](docs/DocumentPartType.md)
|
|
667
|
+
- [Gobodo.DocumentType](docs/DocumentType.md)
|
|
668
|
+
- [Gobodo.FieldMapping](docs/FieldMapping.md)
|
|
669
|
+
- [Gobodo.Fields](docs/Fields.md)
|
|
670
|
+
- [Gobodo.File](docs/File.md)
|
|
671
|
+
- [Gobodo.FileAttachmentUploadObject](docs/FileAttachmentUploadObject.md)
|
|
672
|
+
- [Gobodo.Filter](docs/Filter.md)
|
|
673
|
+
- [Gobodo.FilterManager](docs/FilterManager.md)
|
|
674
|
+
- [Gobodo.Form](docs/Form.md)
|
|
675
|
+
- [Gobodo.FormSection](docs/FormSection.md)
|
|
676
|
+
- [Gobodo.FormSubmission](docs/FormSubmission.md)
|
|
677
|
+
- [Gobodo.Geocode](docs/Geocode.md)
|
|
678
|
+
- [Gobodo.GeocodePayload](docs/GeocodePayload.md)
|
|
679
|
+
- [Gobodo.GeolocationInput](docs/GeolocationInput.md)
|
|
680
|
+
- [Gobodo.Graph](docs/Graph.md)
|
|
681
|
+
- [Gobodo.GraphAction](docs/GraphAction.md)
|
|
682
|
+
- [Gobodo.GraphDatabaseService](docs/GraphDatabaseService.md)
|
|
683
|
+
- [Gobodo.GraphGeocode](docs/GraphGeocode.md)
|
|
684
|
+
- [Gobodo.GraphIteratorEntryPart](docs/GraphIteratorEntryPart.md)
|
|
685
|
+
- [Gobodo.GraphObject](docs/GraphObject.md)
|
|
686
|
+
- [Gobodo.GraphObjectPayload](docs/GraphObjectPayload.md)
|
|
687
|
+
- [Gobodo.GraphObjectSchema](docs/GraphObjectSchema.md)
|
|
688
|
+
- [Gobodo.GraphObjectType](docs/GraphObjectType.md)
|
|
689
|
+
- [Gobodo.GraphObjectTypeSchema](docs/GraphObjectTypeSchema.md)
|
|
690
|
+
- [Gobodo.GraphOwner](docs/GraphOwner.md)
|
|
691
|
+
- [Gobodo.GraphRelationObjectObject](docs/GraphRelationObjectObject.md)
|
|
692
|
+
- [Gobodo.GraphRelationship](docs/GraphRelationship.md)
|
|
693
|
+
- [Gobodo.GraphRelationshipPayload](docs/GraphRelationshipPayload.md)
|
|
694
|
+
- [Gobodo.GraphRelationshipType](docs/GraphRelationshipType.md)
|
|
695
|
+
- [Gobodo.GraphSchema](docs/GraphSchema.md)
|
|
696
|
+
- [Gobodo.GraphTraversalInput](docs/GraphTraversalInput.md)
|
|
697
|
+
- [Gobodo.Image](docs/Image.md)
|
|
698
|
+
- [Gobodo.ImageUploadObject](docs/ImageUploadObject.md)
|
|
699
|
+
- [Gobodo.InputPart](docs/InputPart.md)
|
|
700
|
+
- [Gobodo.InputPartMediaType](docs/InputPartMediaType.md)
|
|
701
|
+
- [Gobodo.Link](docs/Link.md)
|
|
702
|
+
- [Gobodo.LiveStreamInfo](docs/LiveStreamInfo.md)
|
|
703
|
+
- [Gobodo.MeetingEvent](docs/MeetingEvent.md)
|
|
704
|
+
- [Gobodo.MeetingEventTimezone](docs/MeetingEventTimezone.md)
|
|
705
|
+
- [Gobodo.MeetingInfo](docs/MeetingInfo.md)
|
|
706
|
+
- [Gobodo.Member](docs/Member.md)
|
|
707
|
+
- [Gobodo.MemberGroupCategory](docs/MemberGroupCategory.md)
|
|
708
|
+
- [Gobodo.MemberList](docs/MemberList.md)
|
|
709
|
+
- [Gobodo.MessageGroup](docs/MessageGroup.md)
|
|
710
|
+
- [Gobodo.MultipartBody](docs/MultipartBody.md)
|
|
711
|
+
- [Gobodo.Objecttype](docs/Objecttype.md)
|
|
712
|
+
- [Gobodo.Page](docs/Page.md)
|
|
713
|
+
- [Gobodo.PageSchema](docs/PageSchema.md)
|
|
714
|
+
- [Gobodo.Pageable](docs/Pageable.md)
|
|
715
|
+
- [Gobodo.Path](docs/Path.md)
|
|
716
|
+
- [Gobodo.PaymentAccountObject](docs/PaymentAccountObject.md)
|
|
717
|
+
- [Gobodo.PaymentIntentInput](docs/PaymentIntentInput.md)
|
|
718
|
+
- [Gobodo.PaymentIntentResponse](docs/PaymentIntentResponse.md)
|
|
719
|
+
- [Gobodo.PaymentMethod](docs/PaymentMethod.md)
|
|
720
|
+
- [Gobodo.PaymentMethodInput](docs/PaymentMethodInput.md)
|
|
721
|
+
- [Gobodo.PaymentMethodResponse](docs/PaymentMethodResponse.md)
|
|
722
|
+
- [Gobodo.PaymentMethodsResponse](docs/PaymentMethodsResponse.md)
|
|
723
|
+
- [Gobodo.Payout](docs/Payout.md)
|
|
724
|
+
- [Gobodo.PayoutInput](docs/PayoutInput.md)
|
|
725
|
+
- [Gobodo.PayoutResponse](docs/PayoutResponse.md)
|
|
726
|
+
- [Gobodo.Post](docs/Post.md)
|
|
727
|
+
- [Gobodo.PrivateMessage](docs/PrivateMessage.md)
|
|
728
|
+
- [Gobodo.PrivateMessageConversation](docs/PrivateMessageConversation.md)
|
|
729
|
+
- [Gobodo.PrivateMessageConversationSchema](docs/PrivateMessageConversationSchema.md)
|
|
730
|
+
- [Gobodo.Profile](docs/Profile.md)
|
|
731
|
+
- [Gobodo.Profiletype](docs/Profiletype.md)
|
|
732
|
+
- [Gobodo.PropertyContainer](docs/PropertyContainer.md)
|
|
733
|
+
- [Gobodo.PurgeDataDefaultResponseValue](docs/PurgeDataDefaultResponseValue.md)
|
|
734
|
+
- [Gobodo.RelationshipMapping](docs/RelationshipMapping.md)
|
|
735
|
+
- [Gobodo.ScreenSchema](docs/ScreenSchema.md)
|
|
736
|
+
- [Gobodo.SimulcastInfo](docs/SimulcastInfo.md)
|
|
737
|
+
- [Gobodo.SkinField](docs/SkinField.md)
|
|
738
|
+
- [Gobodo.SocialGroup](docs/SocialGroup.md)
|
|
739
|
+
- [Gobodo.SocialGroupType](docs/SocialGroupType.md)
|
|
740
|
+
- [Gobodo.Sort](docs/Sort.md)
|
|
741
|
+
- [Gobodo.SourceTypes](docs/SourceTypes.md)
|
|
742
|
+
- [Gobodo.StatusUpdate](docs/StatusUpdate.md)
|
|
743
|
+
- [Gobodo.StreetAddress](docs/StreetAddress.md)
|
|
744
|
+
- [Gobodo.StripeAccount](docs/StripeAccount.md)
|
|
745
|
+
- [Gobodo.StripeCustomerAccount](docs/StripeCustomerAccount.md)
|
|
746
|
+
- [Gobodo.Template](docs/Template.md)
|
|
747
|
+
- [Gobodo.TemplateSchema](docs/TemplateSchema.md)
|
|
748
|
+
- [Gobodo.ThemeMapping](docs/ThemeMapping.md)
|
|
749
|
+
- [Gobodo.ThemeMappingPayload](docs/ThemeMappingPayload.md)
|
|
750
|
+
- [Gobodo.Transaction](docs/Transaction.md)
|
|
751
|
+
- [Gobodo.Transfer](docs/Transfer.md)
|
|
752
|
+
- [Gobodo.TransferInput](docs/TransferInput.md)
|
|
753
|
+
- [Gobodo.TransferResponse](docs/TransferResponse.md)
|
|
754
|
+
- [Gobodo.TransferResponsePaymentMethodDetails](docs/TransferResponsePaymentMethodDetails.md)
|
|
755
|
+
- [Gobodo.TraversalRelationResponse](docs/TraversalRelationResponse.md)
|
|
756
|
+
- [Gobodo.User](docs/User.md)
|
|
757
|
+
- [Gobodo.UserDataPayload](docs/UserDataPayload.md)
|
|
758
|
+
- [Gobodo.UserDomain](docs/UserDomain.md)
|
|
759
|
+
- [Gobodo.UserInvite](docs/UserInvite.md)
|
|
760
|
+
- [Gobodo.UserInviteInput](docs/UserInviteInput.md)
|
|
761
|
+
- [Gobodo.UserSchema](docs/UserSchema.md)
|
|
762
|
+
- [Gobodo.UserTag](docs/UserTag.md)
|
|
763
|
+
- [Gobodo.Userid](docs/Userid.md)
|
|
764
|
+
- [Gobodo.Video](docs/Video.md)
|
|
765
|
+
- [Gobodo.VideoLiveUrl](docs/VideoLiveUrl.md)
|
|
766
|
+
- [Gobodo.VideoSchema](docs/VideoSchema.md)
|
|
767
|
+
- [Gobodo.VideoUploadObject](docs/VideoUploadObject.md)
|
|
768
|
+
- [Gobodo.ZeusPortalCategory](docs/ZeusPortalCategory.md)
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
## Documentation for Authorization
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
Authentication schemes defined for the API:
|
|
775
|
+
### NexusGraphAPILogin
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
### NexusGraphAPIBasicLogin
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
### NexusGraphAPIAuth
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
- **Type**: API key
|
|
785
|
+
- **API key parameter name**: SWAuthorization
|
|
786
|
+
- **Location**: HTTP header
|
|
787
|
+
|
|
788
|
+
### NexusGraphAPIKey
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
- **Type**: API key
|
|
792
|
+
- **API key parameter name**: apiKey
|
|
793
|
+
- **Location**: HTTP header
|
|
794
|
+
|