bombbomb 2.0.22196 → 2.0.24005
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.
- checksums.yaml +4 -4
- data/README.md +41 -21
- data/bombbomb.gemspec +1 -1
- data/docs/AccountsApi.md +192 -0
- data/docs/ContactsApi.md +60 -0
- data/docs/EmailsApi.md +5 -6
- data/docs/FilesApi.md +60 -0
- data/docs/JerichoPerformance.md +4 -0
- data/docs/ListsApi.md +167 -0
- data/docs/OrdersApi.md +60 -0
- data/docs/PromptBot.md +22 -0
- data/docs/PromptsApi.md +55 -21
- data/docs/SocialsApi.md +387 -0
- data/docs/TeamsApi.md +165 -0
- data/docs/VideoEmailPrompt.md +2 -1
- data/docs/VideoEncodingStatusResponse.md +10 -0
- data/docs/VideosApi.md +53 -0
- data/lib/bombbomb.rb +9 -2
- data/lib/bombbomb/api/accounts_api.rb +254 -0
- data/lib/bombbomb/api/automations_api.rb +1 -1
- data/lib/bombbomb/api/contacts_api.rb +91 -0
- data/lib/bombbomb/api/curriculum_api.rb +1 -1
- data/lib/bombbomb/api/emails_api.rb +9 -11
- data/lib/bombbomb/api/files_api.rb +91 -0
- data/lib/bombbomb/api/lists_api.rb +207 -0
- data/lib/bombbomb/api/orders_api.rb +91 -0
- data/lib/bombbomb/api/prompts_api.rb +92 -40
- data/lib/bombbomb/api/socials_api.rb +458 -0
- data/lib/bombbomb/api/teams_api.rb +184 -1
- data/lib/bombbomb/api/utilities_api.rb +1 -1
- data/lib/bombbomb/api/videos_api.rb +58 -1
- data/lib/bombbomb/api/webhooks_api.rb +1 -1
- data/lib/bombbomb/api_client.rb +1 -1
- data/lib/bombbomb/api_error.rb +1 -1
- data/lib/bombbomb/configuration.rb +1 -1
- data/lib/bombbomb/models/bb_web_hook.rb +1 -1
- data/lib/bombbomb/models/curriculum.rb +1 -1
- data/lib/bombbomb/models/curriculum_user_progress.rb +1 -1
- data/lib/bombbomb/models/curriculum_with_progress.rb +1 -1
- data/lib/bombbomb/models/inline_response_200.rb +1 -1
- data/lib/bombbomb/models/inline_response_200_items.rb +1 -1
- data/lib/bombbomb/models/jericho_configuration.rb +1 -1
- data/lib/bombbomb/models/jericho_performance.rb +45 -5
- data/lib/bombbomb/models/o_auth_client.rb +1 -1
- data/lib/bombbomb/models/prompt_bot.rb +340 -0
- data/lib/bombbomb/models/sign_upload_request.rb +1 -1
- data/lib/bombbomb/models/sign_upload_response.rb +1 -1
- data/lib/bombbomb/models/string.rb +1 -1
- data/lib/bombbomb/models/team_public_representation.rb +1 -1
- data/lib/bombbomb/models/video_email_prompt.rb +19 -11
- data/lib/bombbomb/models/video_encoding_status_response.rb +220 -0
- data/lib/bombbomb/models/video_public_representation.rb +1 -1
- data/lib/bombbomb/models/video_recorder_method_response.rb +1 -1
- data/lib/bombbomb/version.rb +2 -2
- data/spec/api/accounts_api_spec.rb +96 -0
- data/spec/api/contacts_api_spec.rb +58 -0
- data/spec/api/files_api_spec.rb +58 -0
- data/spec/api/lists_api_spec.rb +83 -0
- data/spec/api/orders_api_spec.rb +58 -0
- data/spec/api/socials_api_spec.rb +135 -0
- data/spec/models/prompt_bot_spec.rb +137 -0
- data/spec/models/video_encoding_status_response_spec.rb +65 -0
- metadata +34 -2
data/docs/SocialsApi.md
ADDED
@@ -0,0 +1,387 @@
|
|
1
|
+
# BombBomb::SocialsApi
|
2
|
+
|
3
|
+
All URIs are relative to *https://api.bombbomb.com/v2*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**get_social_article_properties**](SocialsApi.md#get_social_article_properties) | **GET** /socials/properties | Gets the social email properties
|
8
|
+
[**get_social_auto_shares**](SocialsApi.md#get_social_auto_shares) | **GET** /socials/shares | Gets the auto shares from the client group assoc id
|
9
|
+
[**get_social_permissions**](SocialsApi.md#get_social_permissions) | **GET** /socials/permissions | Get permissions for social integration
|
10
|
+
[**get_social_status**](SocialsApi.md#get_social_status) | **GET** /socials/states | Gets the social state
|
11
|
+
[**update_social_auto_shares**](SocialsApi.md#update_social_auto_shares) | **PUT** /socials/shares | Gets the auto shares from the client group assoc id
|
12
|
+
[**update_social_message**](SocialsApi.md#update_social_message) | **PUT** /socials/message | Sets the users social message to what they typed in
|
13
|
+
[**update_social_status**](SocialsApi.md#update_social_status) | **PUT** /socials/state | Updates the social state for the object
|
14
|
+
|
15
|
+
|
16
|
+
# **get_social_article_properties**
|
17
|
+
> get_social_article_properties(jericho_id, email_id, originator_id)
|
18
|
+
|
19
|
+
Gets the social email properties
|
20
|
+
|
21
|
+
Gets the social email properties
|
22
|
+
|
23
|
+
### Example
|
24
|
+
```ruby
|
25
|
+
# load the gem
|
26
|
+
require 'bombbomb'
|
27
|
+
# setup authorization
|
28
|
+
BombBomb.configure do |config|
|
29
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
30
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
31
|
+
end
|
32
|
+
|
33
|
+
api_instance = BombBomb::SocialsApi.new
|
34
|
+
|
35
|
+
jericho_id = "jericho_id_example" # String | associated jericho Id
|
36
|
+
|
37
|
+
email_id = "email_id_example" # String | This is the email Id for the email url
|
38
|
+
|
39
|
+
originator_id = "originator_id_example" # String | This is the originator Id
|
40
|
+
|
41
|
+
|
42
|
+
begin
|
43
|
+
#Gets the social email properties
|
44
|
+
api_instance.get_social_article_properties(jericho_id, email_id, originator_id)
|
45
|
+
rescue BombBomb::ApiError => e
|
46
|
+
puts "Exception when calling SocialsApi->get_social_article_properties: #{e}"
|
47
|
+
end
|
48
|
+
```
|
49
|
+
|
50
|
+
### Parameters
|
51
|
+
|
52
|
+
Name | Type | Description | Notes
|
53
|
+
------------- | ------------- | ------------- | -------------
|
54
|
+
**jericho_id** | **String**| associated jericho Id |
|
55
|
+
**email_id** | **String**| This is the email Id for the email url |
|
56
|
+
**originator_id** | **String**| This is the originator Id |
|
57
|
+
|
58
|
+
### Return type
|
59
|
+
|
60
|
+
nil (empty response body)
|
61
|
+
|
62
|
+
### Authorization
|
63
|
+
|
64
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
65
|
+
|
66
|
+
### HTTP request headers
|
67
|
+
|
68
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
69
|
+
- **Accept**: application/json
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
# **get_social_auto_shares**
|
74
|
+
> get_social_auto_shares(client_group_id)
|
75
|
+
|
76
|
+
Gets the auto shares from the client group assoc id
|
77
|
+
|
78
|
+
Gets the auto shares from the client group assoc id
|
79
|
+
|
80
|
+
### Example
|
81
|
+
```ruby
|
82
|
+
# load the gem
|
83
|
+
require 'bombbomb'
|
84
|
+
# setup authorization
|
85
|
+
BombBomb.configure do |config|
|
86
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
87
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
88
|
+
end
|
89
|
+
|
90
|
+
api_instance = BombBomb::SocialsApi.new
|
91
|
+
|
92
|
+
client_group_id = "client_group_id_example" # String | ID of the client group association
|
93
|
+
|
94
|
+
|
95
|
+
begin
|
96
|
+
#Gets the auto shares from the client group assoc id
|
97
|
+
api_instance.get_social_auto_shares(client_group_id)
|
98
|
+
rescue BombBomb::ApiError => e
|
99
|
+
puts "Exception when calling SocialsApi->get_social_auto_shares: #{e}"
|
100
|
+
end
|
101
|
+
```
|
102
|
+
|
103
|
+
### Parameters
|
104
|
+
|
105
|
+
Name | Type | Description | Notes
|
106
|
+
------------- | ------------- | ------------- | -------------
|
107
|
+
**client_group_id** | **String**| ID of the client group association |
|
108
|
+
|
109
|
+
### Return type
|
110
|
+
|
111
|
+
nil (empty response body)
|
112
|
+
|
113
|
+
### Authorization
|
114
|
+
|
115
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
116
|
+
|
117
|
+
### HTTP request headers
|
118
|
+
|
119
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
120
|
+
- **Accept**: application/json
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
# **get_social_permissions**
|
125
|
+
> get_social_permissions(social_type)
|
126
|
+
|
127
|
+
Get permissions for social integration
|
128
|
+
|
129
|
+
Get permissions for social integration and has redirect for user to login
|
130
|
+
|
131
|
+
### Example
|
132
|
+
```ruby
|
133
|
+
# load the gem
|
134
|
+
require 'bombbomb'
|
135
|
+
# setup authorization
|
136
|
+
BombBomb.configure do |config|
|
137
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
138
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
139
|
+
end
|
140
|
+
|
141
|
+
api_instance = BombBomb::SocialsApi.new
|
142
|
+
|
143
|
+
social_type = "social_type_example" # String | Type of social integration
|
144
|
+
|
145
|
+
|
146
|
+
begin
|
147
|
+
#Get permissions for social integration
|
148
|
+
api_instance.get_social_permissions(social_type)
|
149
|
+
rescue BombBomb::ApiError => e
|
150
|
+
puts "Exception when calling SocialsApi->get_social_permissions: #{e}"
|
151
|
+
end
|
152
|
+
```
|
153
|
+
|
154
|
+
### Parameters
|
155
|
+
|
156
|
+
Name | Type | Description | Notes
|
157
|
+
------------- | ------------- | ------------- | -------------
|
158
|
+
**social_type** | **String**| Type of social integration |
|
159
|
+
|
160
|
+
### Return type
|
161
|
+
|
162
|
+
nil (empty response body)
|
163
|
+
|
164
|
+
### Authorization
|
165
|
+
|
166
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
167
|
+
|
168
|
+
### HTTP request headers
|
169
|
+
|
170
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
171
|
+
- **Accept**: application/json
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
# **get_social_status**
|
176
|
+
> get_social_status(originator_id)
|
177
|
+
|
178
|
+
Gets the social state
|
179
|
+
|
180
|
+
Gets the social state
|
181
|
+
|
182
|
+
### Example
|
183
|
+
```ruby
|
184
|
+
# load the gem
|
185
|
+
require 'bombbomb'
|
186
|
+
# setup authorization
|
187
|
+
BombBomb.configure do |config|
|
188
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
189
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
190
|
+
end
|
191
|
+
|
192
|
+
api_instance = BombBomb::SocialsApi.new
|
193
|
+
|
194
|
+
originator_id = "originator_id_example" # String | associated originatorId
|
195
|
+
|
196
|
+
|
197
|
+
begin
|
198
|
+
#Gets the social state
|
199
|
+
api_instance.get_social_status(originator_id)
|
200
|
+
rescue BombBomb::ApiError => e
|
201
|
+
puts "Exception when calling SocialsApi->get_social_status: #{e}"
|
202
|
+
end
|
203
|
+
```
|
204
|
+
|
205
|
+
### Parameters
|
206
|
+
|
207
|
+
Name | Type | Description | Notes
|
208
|
+
------------- | ------------- | ------------- | -------------
|
209
|
+
**originator_id** | **String**| associated originatorId |
|
210
|
+
|
211
|
+
### Return type
|
212
|
+
|
213
|
+
nil (empty response body)
|
214
|
+
|
215
|
+
### Authorization
|
216
|
+
|
217
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
218
|
+
|
219
|
+
### HTTP request headers
|
220
|
+
|
221
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
222
|
+
- **Accept**: application/json
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
# **update_social_auto_shares**
|
227
|
+
> update_social_auto_shares(auto_share, client_group_id)
|
228
|
+
|
229
|
+
Gets the auto shares from the client group assoc id
|
230
|
+
|
231
|
+
Gets the auto shares from the client group assoc id
|
232
|
+
|
233
|
+
### Example
|
234
|
+
```ruby
|
235
|
+
# load the gem
|
236
|
+
require 'bombbomb'
|
237
|
+
# setup authorization
|
238
|
+
BombBomb.configure do |config|
|
239
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
240
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
241
|
+
end
|
242
|
+
|
243
|
+
api_instance = BombBomb::SocialsApi.new
|
244
|
+
|
245
|
+
auto_share = "auto_share_example" # String | The social share that will auto share to
|
246
|
+
|
247
|
+
client_group_id = "client_group_id_example" # String | ID of the client group association
|
248
|
+
|
249
|
+
|
250
|
+
begin
|
251
|
+
#Gets the auto shares from the client group assoc id
|
252
|
+
api_instance.update_social_auto_shares(auto_share, client_group_id)
|
253
|
+
rescue BombBomb::ApiError => e
|
254
|
+
puts "Exception when calling SocialsApi->update_social_auto_shares: #{e}"
|
255
|
+
end
|
256
|
+
```
|
257
|
+
|
258
|
+
### Parameters
|
259
|
+
|
260
|
+
Name | Type | Description | Notes
|
261
|
+
------------- | ------------- | ------------- | -------------
|
262
|
+
**auto_share** | **String**| The social share that will auto share to |
|
263
|
+
**client_group_id** | **String**| ID of the client group association |
|
264
|
+
|
265
|
+
### Return type
|
266
|
+
|
267
|
+
nil (empty response body)
|
268
|
+
|
269
|
+
### Authorization
|
270
|
+
|
271
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
272
|
+
|
273
|
+
### HTTP request headers
|
274
|
+
|
275
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
276
|
+
- **Accept**: application/json
|
277
|
+
|
278
|
+
|
279
|
+
|
280
|
+
# **update_social_message**
|
281
|
+
> update_social_message(message, originator_id)
|
282
|
+
|
283
|
+
Sets the users social message to what they typed in
|
284
|
+
|
285
|
+
Sets the users social message to what they typed in
|
286
|
+
|
287
|
+
### Example
|
288
|
+
```ruby
|
289
|
+
# load the gem
|
290
|
+
require 'bombbomb'
|
291
|
+
# setup authorization
|
292
|
+
BombBomb.configure do |config|
|
293
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
294
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
295
|
+
end
|
296
|
+
|
297
|
+
api_instance = BombBomb::SocialsApi.new
|
298
|
+
|
299
|
+
message = "message_example" # String | The social message the user typed in
|
300
|
+
|
301
|
+
originator_id = "originator_id_example" # String | The parent id tied to the social share
|
302
|
+
|
303
|
+
|
304
|
+
begin
|
305
|
+
#Sets the users social message to what they typed in
|
306
|
+
api_instance.update_social_message(message, originator_id)
|
307
|
+
rescue BombBomb::ApiError => e
|
308
|
+
puts "Exception when calling SocialsApi->update_social_message: #{e}"
|
309
|
+
end
|
310
|
+
```
|
311
|
+
|
312
|
+
### Parameters
|
313
|
+
|
314
|
+
Name | Type | Description | Notes
|
315
|
+
------------- | ------------- | ------------- | -------------
|
316
|
+
**message** | **String**| The social message the user typed in |
|
317
|
+
**originator_id** | **String**| The parent id tied to the social share |
|
318
|
+
|
319
|
+
### Return type
|
320
|
+
|
321
|
+
nil (empty response body)
|
322
|
+
|
323
|
+
### Authorization
|
324
|
+
|
325
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
326
|
+
|
327
|
+
### HTTP request headers
|
328
|
+
|
329
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
330
|
+
- **Accept**: application/json
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
# **update_social_status**
|
335
|
+
> update_social_status(state, originator_id)
|
336
|
+
|
337
|
+
Updates the social state for the object
|
338
|
+
|
339
|
+
Updates the social state for the object
|
340
|
+
|
341
|
+
### Example
|
342
|
+
```ruby
|
343
|
+
# load the gem
|
344
|
+
require 'bombbomb'
|
345
|
+
# setup authorization
|
346
|
+
BombBomb.configure do |config|
|
347
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
348
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
349
|
+
end
|
350
|
+
|
351
|
+
api_instance = BombBomb::SocialsApi.new
|
352
|
+
|
353
|
+
state = "state_example" # String | The state to set to
|
354
|
+
|
355
|
+
originator_id = "originator_id_example" # String | The parent id tied to the social share
|
356
|
+
|
357
|
+
|
358
|
+
begin
|
359
|
+
#Updates the social state for the object
|
360
|
+
api_instance.update_social_status(state, originator_id)
|
361
|
+
rescue BombBomb::ApiError => e
|
362
|
+
puts "Exception when calling SocialsApi->update_social_status: #{e}"
|
363
|
+
end
|
364
|
+
```
|
365
|
+
|
366
|
+
### Parameters
|
367
|
+
|
368
|
+
Name | Type | Description | Notes
|
369
|
+
------------- | ------------- | ------------- | -------------
|
370
|
+
**state** | **String**| The state to set to |
|
371
|
+
**originator_id** | **String**| The parent id tied to the social share |
|
372
|
+
|
373
|
+
### Return type
|
374
|
+
|
375
|
+
nil (empty response body)
|
376
|
+
|
377
|
+
### Authorization
|
378
|
+
|
379
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
380
|
+
|
381
|
+
### HTTP request headers
|
382
|
+
|
383
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
384
|
+
- **Accept**: application/json
|
385
|
+
|
386
|
+
|
387
|
+
|
data/docs/TeamsApi.md
CHANGED
@@ -8,13 +8,16 @@ Method | HTTP request | Description
|
|
8
8
|
[**cancel_jericho_send**](TeamsApi.md#cancel_jericho_send) | **DELETE** /team/{teamId}/jericho/{jerichoId} | Cancel a Jericho Send
|
9
9
|
[**create_subteam**](TeamsApi.md#create_subteam) | **POST** /team/{teamId}/subteam | Add a Subteam
|
10
10
|
[**delete_subteam**](TeamsApi.md#delete_subteam) | **DELETE** /team/{teamId}/subteam | Delete Subteam
|
11
|
+
[**get_all_client_group_associations**](TeamsApi.md#get_all_client_group_associations) | **GET** /team/associations/ | Lists team associations
|
11
12
|
[**get_client_group_assets**](TeamsApi.md#get_client_group_assets) | **GET** /team/assets/ | Lists team assets
|
12
13
|
[**get_jericho_sends**](TeamsApi.md#get_jericho_sends) | **GET** /team/{teamId}/jericho | List Jericho Sends
|
13
14
|
[**get_jericho_stats**](TeamsApi.md#get_jericho_stats) | **GET** /team/{teamId}/jericho/{jerichoId}/performance | Gets Jericho performance statistics
|
14
15
|
[**get_subteams**](TeamsApi.md#get_subteams) | **GET** /team/{teamId}/subteam | List Subteams
|
15
16
|
[**queue_jericho_send**](TeamsApi.md#queue_jericho_send) | **POST** /team/{teamId}/jericho | Creates a Jericho send.
|
16
17
|
[**remove_member_from_team**](TeamsApi.md#remove_member_from_team) | **DELETE** /team/{teamId}/member/{userId} | Remove Member from Team
|
18
|
+
[**update_jericho_prompt_send**](TeamsApi.md#update_jericho_prompt_send) | **PUT** /team/{teamId}/jericho/{jerichoId} | Updates the Jericho Prompt Settings
|
17
19
|
[**update_team**](TeamsApi.md#update_team) | **POST** /team/{teamId} | Update a team
|
20
|
+
[**update_team_member**](TeamsApi.md#update_team_member) | **PUT** /team/{teamId}/member | Update Member of Team
|
18
21
|
|
19
22
|
|
20
23
|
# **add_team_member**
|
@@ -238,6 +241,57 @@ Name | Type | Description | Notes
|
|
238
241
|
|
239
242
|
|
240
243
|
|
244
|
+
# **get_all_client_group_associations**
|
245
|
+
> get_all_client_group_associations(client_id)
|
246
|
+
|
247
|
+
Lists team associations
|
248
|
+
|
249
|
+
Returns a collection of team associations for a given user
|
250
|
+
|
251
|
+
### Example
|
252
|
+
```ruby
|
253
|
+
# load the gem
|
254
|
+
require 'bombbomb'
|
255
|
+
# setup authorization
|
256
|
+
BombBomb.configure do |config|
|
257
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
258
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
259
|
+
end
|
260
|
+
|
261
|
+
api_instance = BombBomb::TeamsApi.new
|
262
|
+
|
263
|
+
client_id = "client_id_example" # String | The clientId requesting group associations.
|
264
|
+
|
265
|
+
|
266
|
+
begin
|
267
|
+
#Lists team associations
|
268
|
+
api_instance.get_all_client_group_associations(client_id)
|
269
|
+
rescue BombBomb::ApiError => e
|
270
|
+
puts "Exception when calling TeamsApi->get_all_client_group_associations: #{e}"
|
271
|
+
end
|
272
|
+
```
|
273
|
+
|
274
|
+
### Parameters
|
275
|
+
|
276
|
+
Name | Type | Description | Notes
|
277
|
+
------------- | ------------- | ------------- | -------------
|
278
|
+
**client_id** | **String**| The clientId requesting group associations. |
|
279
|
+
|
280
|
+
### Return type
|
281
|
+
|
282
|
+
nil (empty response body)
|
283
|
+
|
284
|
+
### Authorization
|
285
|
+
|
286
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
287
|
+
|
288
|
+
### HTTP request headers
|
289
|
+
|
290
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
291
|
+
- **Accept**: application/json
|
292
|
+
|
293
|
+
|
294
|
+
|
241
295
|
# **get_client_group_assets**
|
242
296
|
> InlineResponse200 get_client_group_assets(asset_type, opts)
|
243
297
|
|
@@ -571,6 +625,60 @@ Name | Type | Description | Notes
|
|
571
625
|
|
572
626
|
|
573
627
|
|
628
|
+
# **update_jericho_prompt_send**
|
629
|
+
> update_jericho_prompt_send(team_id, jericho_id)
|
630
|
+
|
631
|
+
Updates the Jericho Prompt Settings
|
632
|
+
|
633
|
+
Updates the prompt settings based on the original email id
|
634
|
+
|
635
|
+
### Example
|
636
|
+
```ruby
|
637
|
+
# load the gem
|
638
|
+
require 'bombbomb'
|
639
|
+
# setup authorization
|
640
|
+
BombBomb.configure do |config|
|
641
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
642
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
643
|
+
end
|
644
|
+
|
645
|
+
api_instance = BombBomb::TeamsApi.new
|
646
|
+
|
647
|
+
team_id = "team_id_example" # String | The team id
|
648
|
+
|
649
|
+
jericho_id = "jericho_id_example" # String | ID of the Jericho job
|
650
|
+
|
651
|
+
|
652
|
+
begin
|
653
|
+
#Updates the Jericho Prompt Settings
|
654
|
+
api_instance.update_jericho_prompt_send(team_id, jericho_id)
|
655
|
+
rescue BombBomb::ApiError => e
|
656
|
+
puts "Exception when calling TeamsApi->update_jericho_prompt_send: #{e}"
|
657
|
+
end
|
658
|
+
```
|
659
|
+
|
660
|
+
### Parameters
|
661
|
+
|
662
|
+
Name | Type | Description | Notes
|
663
|
+
------------- | ------------- | ------------- | -------------
|
664
|
+
**team_id** | **String**| The team id |
|
665
|
+
**jericho_id** | **String**| ID of the Jericho job |
|
666
|
+
|
667
|
+
### Return type
|
668
|
+
|
669
|
+
nil (empty response body)
|
670
|
+
|
671
|
+
### Authorization
|
672
|
+
|
673
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
674
|
+
|
675
|
+
### HTTP request headers
|
676
|
+
|
677
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
678
|
+
- **Accept**: application/json
|
679
|
+
|
680
|
+
|
681
|
+
|
574
682
|
# **update_team**
|
575
683
|
> TeamPublicRepresentation update_team(team_id, opts)
|
576
684
|
|
@@ -627,3 +735,60 @@ Name | Type | Description | Notes
|
|
627
735
|
|
628
736
|
|
629
737
|
|
738
|
+
# **update_team_member**
|
739
|
+
> update_team_member(team_id, user_id, admin)
|
740
|
+
|
741
|
+
Update Member of Team
|
742
|
+
|
743
|
+
Updates a member of a team
|
744
|
+
|
745
|
+
### Example
|
746
|
+
```ruby
|
747
|
+
# load the gem
|
748
|
+
require 'bombbomb'
|
749
|
+
# setup authorization
|
750
|
+
BombBomb.configure do |config|
|
751
|
+
# Configure OAuth2 access token for authorization: BBOAuth2
|
752
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
753
|
+
end
|
754
|
+
|
755
|
+
api_instance = BombBomb::TeamsApi.new
|
756
|
+
|
757
|
+
team_id = "team_id_example" # String | The team id
|
758
|
+
|
759
|
+
user_id = "user_id_example" # String | The user id of the member being added to the team.
|
760
|
+
|
761
|
+
admin = true # BOOLEAN | Set if the user is an admin of this team.
|
762
|
+
|
763
|
+
|
764
|
+
begin
|
765
|
+
#Update Member of Team
|
766
|
+
api_instance.update_team_member(team_id, user_id, admin)
|
767
|
+
rescue BombBomb::ApiError => e
|
768
|
+
puts "Exception when calling TeamsApi->update_team_member: #{e}"
|
769
|
+
end
|
770
|
+
```
|
771
|
+
|
772
|
+
### Parameters
|
773
|
+
|
774
|
+
Name | Type | Description | Notes
|
775
|
+
------------- | ------------- | ------------- | -------------
|
776
|
+
**team_id** | **String**| The team id |
|
777
|
+
**user_id** | **String**| The user id of the member being added to the team. |
|
778
|
+
**admin** | **BOOLEAN**| Set if the user is an admin of this team. |
|
779
|
+
|
780
|
+
### Return type
|
781
|
+
|
782
|
+
nil (empty response body)
|
783
|
+
|
784
|
+
### Authorization
|
785
|
+
|
786
|
+
[BBOAuth2](../README.md#BBOAuth2)
|
787
|
+
|
788
|
+
### HTTP request headers
|
789
|
+
|
790
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
791
|
+
- **Accept**: application/json
|
792
|
+
|
793
|
+
|
794
|
+
|