bungie_client 0.6.0 → 1.0.0

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.
@@ -0,0 +1,10 @@
1
+ # Simple class for service structure
2
+ class BungieClient::Service
3
+ attr_reader :method_type, :name, :endpoint
4
+
5
+ def initialize(options)
6
+ @method_type = ((%w(get post).include? options[:method]) ? options[:method] : 'get')
7
+ @name = options[:name].to_s
8
+ @endpoint = options[:endpoint].to_s
9
+ end
10
+ end
@@ -0,0 +1,1429 @@
1
+ ---
2
+ get_current_user:
3
+ :name: GetCurrentUser
4
+ :method: get
5
+ :endpoint: "/JSONP/GetBungieNetUser/"
6
+ application_search:
7
+ :name: ApplicationSearch
8
+ :method: post
9
+ :endpoint: "/App/Search/"
10
+ change_api_key_status:
11
+ :name: ChangeApiKeyStatus
12
+ :method: post
13
+ :endpoint: "/App/ChangeApiKeyState/{param1}/{param2}/"
14
+ create_api_key:
15
+ :name: CreateApiKey
16
+ :method: post
17
+ :endpoint: "/App/CreateApiKey/{param1}/"
18
+ create_application:
19
+ :name: CreateApplication
20
+ :method: post
21
+ :endpoint: "/App/CreateApplication/"
22
+ edit_application:
23
+ :name: EditApplication
24
+ :method: post
25
+ :endpoint: "/App/EditApplication/{param1}/"
26
+ get_access_tokens_from_code:
27
+ :name: GetAccessTokensFromCode
28
+ :method: post
29
+ :endpoint: "/App/GetAccessTokensFromCode/"
30
+ get_access_tokens_from_refresh_token:
31
+ :name: GetAccessTokensFromRefreshToken
32
+ :method: post
33
+ :endpoint: "/App/GetAccessTokensFromRefreshToken/"
34
+ get_application:
35
+ :name: GetApplication
36
+ :method: get
37
+ :endpoint: "/App/Application/{param1}/"
38
+ get_application_api_keys:
39
+ :name: GetApplicationApiKeys
40
+ :method: get
41
+ :endpoint: "/App/ApplicationApiKeys/{param1}/"
42
+ get_authorization_for_user_and_application:
43
+ :name: GetAuthorizationForUserAndApplication
44
+ :method: get
45
+ :endpoint: "/App/Authorization/{param1}/{param2}/"
46
+ get_authorizations:
47
+ :name: GetAuthorizations
48
+ :method: get
49
+ :endpoint: "/App/Authorizations/{param1}/"
50
+ private_application_search:
51
+ :name: PrivateApplicationSearch
52
+ :method: post
53
+ :endpoint: "/App/PrivateSearch/"
54
+ revoke_authorization:
55
+ :name: RevokeAuthorization
56
+ :method: post
57
+ :endpoint: "/App/RevokeAuthorization/{param1}/{param2}/"
58
+ create_user:
59
+ :name: CreateUser
60
+ :method: post
61
+ :endpoint: "/User/CreateUser/"
62
+ edit_success_message_flags:
63
+ :name: EditSuccessMessageFlags
64
+ :method: post
65
+ :endpoint: "/User/MessageFlags/Success/Update/{param1}/"
66
+ get_available_avatars:
67
+ :name: GetAvailableAvatars
68
+ :method: get
69
+ :endpoint: "/User/GetAvailableAvatars/"
70
+ get_available_avatars_admin:
71
+ :name: GetAvailableAvatarsAdmin
72
+ :method: get
73
+ :endpoint: "/User/GetAvailableAvatarsAdmin/{param1}/"
74
+ get_available_themes:
75
+ :name: GetAvailableThemes
76
+ :method: get
77
+ :endpoint: "/User/GetAvailableThemes/"
78
+ get_bungie_account:
79
+ :name: GetBungieAccount
80
+ :method: get
81
+ :endpoint: "/User/GetBungieAccount/{membershipId}/{membershipType}/"
82
+ get_bungie_net_user_by_id:
83
+ :name: GetBungieNetUserById
84
+ :method: get
85
+ :endpoint: "/User/GetBungieNetUserById/{membershipId}/"
86
+ get_counts_for_current_user:
87
+ :name: GetCountsForCurrentUser
88
+ :method: get
89
+ :endpoint: "/User/GetCounts/"
90
+ get_credential_types_for_account:
91
+ :name: GetCredentialTypesForAccount
92
+ :method: get
93
+ :endpoint: "/User/GetCredentialTypesForAccount/"
94
+ get_current_bungie_account:
95
+ :name: GetCurrentBungieAccount
96
+ :method: get
97
+ :endpoint: "/User/GetCurrentBungieAccount/"
98
+ get_current_bungie_net_user:
99
+ :name: GetCurrentBungieNetUser
100
+ :method: get
101
+ :endpoint: "/User/GetCurrentBungieNetUser/"
102
+ get_current_user_(user):
103
+ :name: GetCurrentUser (User)
104
+ :method: get
105
+ :endpoint: "/User/GetBungieNetUser/"
106
+ get_mobile_app_pairings:
107
+ :name: GetMobileAppPairings
108
+ :method: get
109
+ :endpoint: "/User/GetMobileAppPairings/"
110
+ get_mobile_app_pairings_uncached:
111
+ :name: GetMobileAppPairingsUncached
112
+ :method: get
113
+ :endpoint: "/User/GetMobileAppPairingsUncached/"
114
+ get_notification_settings:
115
+ :name: GetNotificationSettings
116
+ :method: get
117
+ :endpoint: "/User/GetNotificationSettings/"
118
+ get_partnerships:
119
+ :name: GetPartnerships
120
+ :method: get
121
+ :endpoint: "/User/{param1}/Partnerships/"
122
+ get_platform_api_keys_for_user:
123
+ :name: GetPlatformApiKeysForUser
124
+ :method: get
125
+ :endpoint: "/User/GetPlatformApiKeysForUser/"
126
+ get_sign_out_url:
127
+ :name: GetSignOutUrl
128
+ :method: get
129
+ :endpoint: "/User/GetSignOutUrl/"
130
+ get_user_aliases:
131
+ :name: GetUserAliases
132
+ :method: get
133
+ :endpoint: "/User/GetUserAliases/{membershipId}/"
134
+ get_user_membership_ids:
135
+ :name: GetUserMembershipIds
136
+ :method: get
137
+ :endpoint: "/User/GetMembershipIds/"
138
+ link_override:
139
+ :name: LinkOverride
140
+ :method: post
141
+ :endpoint: "/User/LinkOverride/"
142
+ register_mobile_app_pair:
143
+ :name: RegisterMobileAppPair
144
+ :method: post
145
+ :endpoint: "/User/RegisterMobileAppPair/"
146
+ remove_partnership:
147
+ :name: RemovePartnership
148
+ :method: post
149
+ :endpoint: "/User/Partnerships/{param1}/Remove/"
150
+ search_users:
151
+ :name: SearchUsers
152
+ :method: get
153
+ :endpoint: "/User/SearchUsers/"
154
+ search_users_paged:
155
+ :name: SearchUsersPaged
156
+ :method: get
157
+ :endpoint: "/User/SearchUsersPaged/{searchTerm}/{page}/"
158
+ search_users_paged_v2:
159
+ :name: SearchUsersPagedV2
160
+ :method: get
161
+ :endpoint: "/User/SearchUsersPaged/{searchTerm}/{page}/{param3}/"
162
+ set_acknowledged:
163
+ :name: SetAcknowledged
164
+ :method: post
165
+ :endpoint: "/User/Acknowledged/{ackId}/"
166
+ unregister_mobile_app_pair:
167
+ :name: UnregisterMobileAppPair
168
+ :method: post
169
+ :endpoint: "/User/UnregisterMobileAppPair/{param1}/"
170
+ update_destiny_emblem_avatar:
171
+ :name: UpdateDestinyEmblemAvatar
172
+ :method: post
173
+ :endpoint: "/User/UpdateDestinyEmblemAvatar/"
174
+ update_notification_setting:
175
+ :name: UpdateNotificationSetting
176
+ :method: post
177
+ :endpoint: "/User/Notification/Update/"
178
+ update_state_info_for_mobile_app_pair:
179
+ :name: UpdateStateInfoForMobileAppPair
180
+ :method: post
181
+ :endpoint: "/User/UpdateStateInfoForMobileAppPair/"
182
+ update_user:
183
+ :name: UpdateUser
184
+ :method: post
185
+ :endpoint: "/User/UpdateUser/"
186
+ update_user_admin:
187
+ :name: UpdateUserAdmin
188
+ :method: post
189
+ :endpoint: "/User/UpdateUserAdmin/{param1}/"
190
+ create_conversation:
191
+ :name: CreateConversation
192
+ :method: post
193
+ :endpoint: "/Message/CreateConversation/"
194
+ create_conversation_v2:
195
+ :name: CreateConversationV2
196
+ :method: post
197
+ :endpoint: "/Message/CreateConversationV2/"
198
+ get_alliance_invited_to_join_invitations:
199
+ :name: GetAllianceInvitedToJoinInvitations
200
+ :method: get
201
+ :endpoint: "/Message/AllianceInvitations/InvitationsToJoinAnotherGroup/{param1}/{param2}/"
202
+ get_alliance_join_invitations:
203
+ :name: GetAllianceJoinInvitations
204
+ :method: get
205
+ :endpoint: "/Message/AllianceInvitations/RequestsToJoinYourGroup/{param1}/{param2}/"
206
+ get_conversation_by_id:
207
+ :name: GetConversationById
208
+ :method: get
209
+ :endpoint: "/Message/GetConversationById/{conversationId}/"
210
+ get_conversation_by_id_v2:
211
+ :name: GetConversationByIdV2
212
+ :method: get
213
+ :endpoint: "/Message/GetConversationByIdV2/{param1}/"
214
+ get_conversations_v2:
215
+ :name: GetConversationsV2
216
+ :method: get
217
+ :endpoint: "/Message/GetConversationsV2/{param1}/{param2}/"
218
+ get_conversations_v3:
219
+ :name: GetConversationsV3
220
+ :method: get
221
+ :endpoint: "/Message/GetConversationsV3/{param1}/{param2}/"
222
+ get_conversations_v4:
223
+ :name: GetConversationsV4
224
+ :method: get
225
+ :endpoint: "/Message/GetConversationsV4/{param1}/"
226
+ get_conversations_v5:
227
+ :name: GetConversationsV5
228
+ :method: get
229
+ :endpoint: "/Message/GetConversationsV5/{currentPage}/"
230
+ get_conversation_thread_v2:
231
+ :name: GetConversationThreadV2
232
+ :method: get
233
+ :endpoint: "/Message/GetConversationThreadV2/{param1}/{param2}/{param3}/"
234
+ get_conversation_thread_v3:
235
+ :name: GetConversationThreadV3
236
+ :method: get
237
+ :endpoint: "/Message/GetConversationThreadV3/{param1}/{param2}/"
238
+ get_conversation_with_member_id:
239
+ :name: GetConversationWithMemberId
240
+ :method: get
241
+ :endpoint: "/Message/GetConversationWithMember/{memberId}/"
242
+ get_conversation_with_member_id_v2:
243
+ :name: GetConversationWithMemberIdV2
244
+ :method: get
245
+ :endpoint: "/Message/GetConversationWithMemberV2/{param1}/"
246
+ get_group_conversations:
247
+ :name: GetGroupConversations
248
+ :method: get
249
+ :endpoint: "/Message/GetGroupConversations/{param1}/"
250
+ get_invitation_details:
251
+ :name: GetInvitationDetails
252
+ :method: get
253
+ :endpoint: "/Message/Invitations/{param1}/Details/"
254
+ get_total_conversation_count:
255
+ :name: GetTotalConversationCount
256
+ :method: get
257
+ :endpoint: "/Message/GetTotalConversationCount/"
258
+ get_unread_conversation_count_v2:
259
+ :name: GetUnreadConversationCountV2
260
+ :method: get
261
+ :endpoint: "/Message/GetUnreadPrivateConversationCount/"
262
+ get_unread_conversation_count_v3:
263
+ :name: GetUnreadConversationCountV3
264
+ :method: get
265
+ :endpoint: "/Message/GetUnreadConversationCountV3/"
266
+ get_unread_conversation_count_v4:
267
+ :name: GetUnreadConversationCountV4
268
+ :method: get
269
+ :endpoint: "/Message/GetUnreadConversationCountV4/"
270
+ get_unread_group_conversation_count:
271
+ :name: GetUnreadGroupConversationCount
272
+ :method: get
273
+ :endpoint: "/Message/GetUnreadGroupConversationCount/"
274
+ leave_conversation:
275
+ :name: LeaveConversation
276
+ :method: get
277
+ :endpoint: "/Message/LeaveConversation/{param1}/"
278
+ moderate_group_wall:
279
+ :name: ModerateGroupWall
280
+ :method: post
281
+ :endpoint: "/Message/ModerateGroupWall/{param1}/{param2}/"
282
+ review_all_invitations:
283
+ :name: ReviewAllInvitations
284
+ :method: post
285
+ :endpoint: "/Message/Invitations/ReviewAllDirect/{param1}/{param2}/"
286
+ review_invitation:
287
+ :name: ReviewInvitation
288
+ :method: post
289
+ :endpoint: "/Message/Invitations/{param1}/{param2}/{param3}/"
290
+ review_invitation_direct:
291
+ :name: ReviewInvitationDirect
292
+ :method: post
293
+ :endpoint: "/Message/Invitations/ReviewDirect/{invitationId}/{invitationResponseState}/"
294
+ review_invitations:
295
+ :name: ReviewInvitations
296
+ :method: post
297
+ :endpoint: "/Message/Invitations/ReviewListDirect/{param1}/"
298
+ save_message_v2:
299
+ :name: SaveMessageV2
300
+ :method: post
301
+ :endpoint: "/Message/SaveMessageV2/"
302
+ save_message_v3:
303
+ :name: SaveMessageV3
304
+ :method: post
305
+ :endpoint: "/Message/SaveMessageV3/"
306
+ save_message_v4:
307
+ :name: SaveMessageV4
308
+ :method: post
309
+ :endpoint: "/Message/SaveMessageV4/"
310
+ update_conversation_last_viewed_timestamp:
311
+ :name: UpdateConversationLastViewedTimestamp
312
+ :method: post
313
+ :endpoint: "/Message/Conversations/UpdateLastViewedTimestamp/"
314
+ user_is_typing:
315
+ :name: UserIsTyping
316
+ :method: post
317
+ :endpoint: "/Message/UserIsTyping/"
318
+ get_real_time_events:
319
+ :name: GetRealTimeEvents
320
+ :method: get
321
+ :endpoint: "/Notification/Events/{param1}/{param2}/"
322
+ get_recent_notification_count:
323
+ :name: GetRecentNotificationCount
324
+ :method: get
325
+ :endpoint: "/Notification/GetCount/"
326
+ get_recent_notifications:
327
+ :name: GetRecentNotifications
328
+ :method: get
329
+ :endpoint: "/Notification/GetRecent/"
330
+ reset_notification:
331
+ :name: ResetNotification
332
+ :method: get
333
+ :endpoint: "/Notification/Reset/"
334
+ get_career:
335
+ :name: GetCareer
336
+ :method: get
337
+ :endpoint: "/Content/Careers/{param1}/"
338
+ get_careers:
339
+ :name: GetCareers
340
+ :method: get
341
+ :endpoint: "/Content/Careers/"
342
+ get_content_by_id:
343
+ :name: GetContentById
344
+ :method: get
345
+ :endpoint: "/Content/GetContentById/{param1}/{param2}/"
346
+ get_content_by_tag_and_type:
347
+ :name: GetContentByTagAndType
348
+ :method: get
349
+ :endpoint: "/Content/GetContentByTagAndType/{param1}/{param2}/{param3}/"
350
+ get_content_type:
351
+ :name: GetContentType
352
+ :method: get
353
+ :endpoint: "/Content/GetContentType/{param1}/"
354
+ get_destiny_content:
355
+ :name: GetDestinyContent
356
+ :method: get
357
+ :endpoint: "/Content/Site/Destiny/{param1}/"
358
+ get_destiny_content_v2:
359
+ :name: GetDestinyContentV2
360
+ :method: get
361
+ :endpoint: "/Content/Site/Destiny/V2/{param1}/"
362
+ get_featured_article:
363
+ :name: GetFeaturedArticle
364
+ :method: get
365
+ :endpoint: "/Content/Site/Featured/"
366
+ get_homepage_content:
367
+ :name: GetHomepageContent
368
+ :method: get
369
+ :endpoint: "/Content/Site/Homepage/{param1}/"
370
+ get_homepage_content_v2:
371
+ :name: GetHomepageContentV2
372
+ :method: get
373
+ :endpoint: "/Content/Site/Homepage/V2/"
374
+ get_jobs:
375
+ :name: GetJobs
376
+ :method: get
377
+ :endpoint: "/Content/Site/Jobs/{param1}/"
378
+ get_news:
379
+ :name: GetNews
380
+ :method: get
381
+ :endpoint: "/Content/Site/News/{param1}/{param2}/"
382
+ get_promo_widget:
383
+ :name: GetPromoWidget
384
+ :method: get
385
+ :endpoint: "/Content/Site/Destiny/Promo/"
386
+ get_publications:
387
+ :name: GetPublications
388
+ :method: get
389
+ :endpoint: "/Content/Site/Publications/{param1}/"
390
+ search_careers:
391
+ :name: SearchCareers
392
+ :method: get
393
+ :endpoint: "/Content/Careers/Search/"
394
+ search_content_by_tag_and_type:
395
+ :name: SearchContentByTagAndType
396
+ :method: get
397
+ :endpoint: "/Content/SearchContentByTagAndType/{param1}/{param2}/{param3}/"
398
+ search_content_ex:
399
+ :name: SearchContentEx
400
+ :method: post
401
+ :endpoint: "/Content/SearchEx/{param1}/"
402
+ search_content_with_text:
403
+ :name: SearchContentWithText
404
+ :method: get
405
+ :endpoint: "/Content/Search/{param1}/"
406
+ get_aggregated_social_feed:
407
+ :name: GetAggregatedSocialFeed
408
+ :method: get
409
+ :endpoint: "/ExternalSocial/GetAggregatedSocialFeed/{param1}/"
410
+ get_survey:
411
+ :name: GetSurvey
412
+ :method: get
413
+ :endpoint: "/Survey/GetSurvey/"
414
+ approve_fireteam_thread:
415
+ :name: ApproveFireteamThread
416
+ :method: post
417
+ :endpoint: "/Forum/Recruit/Approve/{param1}/"
418
+ change_lock_state:
419
+ :name: ChangeLockState
420
+ :method: post
421
+ :endpoint: "/Forum/ChangeLockState/{param1}/{param2}/"
422
+ change_pin_state:
423
+ :name: ChangePinState
424
+ :method: post
425
+ :endpoint: "/Forum/ChangePinState/{param1}/{param2}/"
426
+ create_content_comment:
427
+ :name: CreateContentComment
428
+ :method: post
429
+ :endpoint: "/Forum/CreateContentComment/"
430
+ create_post:
431
+ :name: CreatePost
432
+ :method: post
433
+ :endpoint: "/Forum/CreatePost/"
434
+ delete_post:
435
+ :name: DeletePost
436
+ :method: post
437
+ :endpoint: "/Forum/DeletePost/{param1}/"
438
+ edit_post:
439
+ :name: EditPost
440
+ :method: post
441
+ :endpoint: "/Forum/EditPost/{param1}/"
442
+ get_core_topics_paged:
443
+ :name: GetCoreTopicsPaged
444
+ :method: get
445
+ :endpoint: "/Forum/GetCoreTopicsPaged/{param1}/{param2}/{param3}/{param4}/"
446
+ get_forum_tag_count_estimate:
447
+ :name: GetForumTagCountEstimate
448
+ :method: get
449
+ :endpoint: "/Forum/GetForumTagCountEstimate/{param1}/"
450
+ get_forum_tag_suggestions:
451
+ :name: GetForumTagSuggestions
452
+ :method: get
453
+ :endpoint: "/Forum/GetForumTagSuggestions/"
454
+ get_poll:
455
+ :name: GetPoll
456
+ :method: get
457
+ :endpoint: "/Forum/Poll/{param1}/"
458
+ get_popular_tags:
459
+ :name: GetPopularTags
460
+ :method: get
461
+ :endpoint: "/Forum/GetPopularTags/"
462
+ get_post_and_parent:
463
+ :name: GetPostAndParent
464
+ :method: get
465
+ :endpoint: "/Forum/GetPostAndParent/{childPostId}/"
466
+ get_post_and_parent_awaiting_approval:
467
+ :name: GetPostAndParentAwaitingApproval
468
+ :method: get
469
+ :endpoint: "/Forum/GetPostAndParentAwaitingApproval/{childPostId}/"
470
+ get_posts_threaded_paged:
471
+ :name: GetPostsThreadedPaged
472
+ :method: get
473
+ :endpoint: "/Forum/GetPostsThreadedPaged/{parentPostId}/{page}/{pageSize}/{replySize}/{getParentPost}/{rootThreadMode}/{sortMode}/"
474
+ get_posts_threaded_paged_from_child:
475
+ :name: GetPostsThreadedPagedFromChild
476
+ :method: get
477
+ :endpoint: "/Forum/GetPostsThreadedPagedFromChild/{childPostId}/{page}/{pageSize}/{replySize}/{rootThreadMode}/{sortMode}/"
478
+ get_recruitment_thread_summaries:
479
+ :name: GetRecruitmentThreadSummaries
480
+ :method: post
481
+ :endpoint: "/Forum/Recruit/Summaries/"
482
+ get_topic_for_content:
483
+ :name: GetTopicForContent
484
+ :method: get
485
+ :endpoint: "/Forum/GetTopicForContent/{contentId}/"
486
+ get_topics_paged:
487
+ :name: GetTopicsPaged
488
+ :method: get
489
+ :endpoint: "/Forum/GetTopicsPaged/{page}/{pageSize}/{group}/{sort}/{quickDate}/{categoryFilter}/"
490
+ join_fireteam_thread:
491
+ :name: JoinFireteamThread
492
+ :method: post
493
+ :endpoint: "/Forum/Recruit/Join/{param1}/"
494
+ kick_ban_fireteam_applicant:
495
+ :name: KickBanFireteamApplicant
496
+ :method: post
497
+ :endpoint: "/Forum/Recruit/KickBan/{param1}/{param2}/"
498
+ leave_fireteam_thread:
499
+ :name: LeaveFireteamThread
500
+ :method: post
501
+ :endpoint: "/Forum/Recruit/Leave/{param1}/"
502
+ mark_reply_as_answer:
503
+ :name: MarkReplyAsAnswer
504
+ :method: post
505
+ :endpoint: "/Forum/MarkReplyAsAnswer/{param1}/{param2}/"
506
+ moderate_group_post:
507
+ :name: ModerateGroupPost
508
+ :method: post
509
+ :endpoint: "/Forum/Post/{param1}/GroupModerate/"
510
+ moderate_post:
511
+ :name: ModeratePost
512
+ :method: post
513
+ :endpoint: "/Forum/Post/{param1}/Moderate/"
514
+ moderate_tag:
515
+ :name: ModerateTag
516
+ :method: post
517
+ :endpoint: "/Forum/Tags/{param1}/Moderate/"
518
+ poll_vote:
519
+ :name: PollVote
520
+ :method: post
521
+ :endpoint: "/Forum/Poll/Vote/{param1}/{param2}/"
522
+ rate_post:
523
+ :name: RatePost
524
+ :method: post
525
+ :endpoint: "/Forum/RatePost/{param1}/{param2}/"
526
+ unmark_reply_as_answer:
527
+ :name: UnmarkReplyAsAnswer
528
+ :method: post
529
+ :endpoint: "/Forum/UnmarkReplyAsAnswer/{param1}/"
530
+ follow_tag:
531
+ :name: FollowTag
532
+ :method: post
533
+ :endpoint: "/Activity/Tag/Follow/"
534
+ follow_user:
535
+ :name: FollowUser
536
+ :method: post
537
+ :endpoint: "/Activity/User/{param1}/Follow/"
538
+ get_application_activity_for_user:
539
+ :name: GetApplicationActivityForUser
540
+ :method: get
541
+ :endpoint: "/Activity/User/{param1}/Activities/Application/{param2}/"
542
+ get_entities_followed_by_current_user:
543
+ :name: GetEntitiesFollowedByCurrentUser
544
+ :method: get
545
+ :endpoint: "/Activity/Following/"
546
+ get_entities_followed_by_current_user_v2:
547
+ :name: GetEntitiesFollowedByCurrentUserV2
548
+ :method: get
549
+ :endpoint: "/Activity/Following/V2/{param1}/{param2}/"
550
+ get_entities_followed_by_user:
551
+ :name: GetEntitiesFollowedByUser
552
+ :method: get
553
+ :endpoint: "/Activity/User/{param1}/Following/"
554
+ get_entities_followed_by_user_v2:
555
+ :name: GetEntitiesFollowedByUserV2
556
+ :method: get
557
+ :endpoint: "/Activity/User/{param1}/Following/V2/{param2}/{param3}/"
558
+ get_followers_of_tag:
559
+ :name: GetFollowersOfTag
560
+ :method: get
561
+ :endpoint: "/Activity/Tag/Followers/"
562
+ get_followers_of_user:
563
+ :name: GetFollowersOfUser
564
+ :method: get
565
+ :endpoint: "/Activity/User/{profileId}/Followers/"
566
+ get_forum_activity_for_user:
567
+ :name: GetForumActivityForUser
568
+ :method: get
569
+ :endpoint: "/Activity/User/{param1}/Activities/Forums/"
570
+ get_forum_activity_for_user_v2:
571
+ :name: GetForumActivityForUserV2
572
+ :method: get
573
+ :endpoint: "/Activity/User/{param1}/Activities/ForumsV2/"
574
+ get_friends:
575
+ :name: GetFriends
576
+ :method: get
577
+ :endpoint: "/Activity/Friends/"
578
+ get_friends_all_no_presence:
579
+ :name: GetFriendsAllNoPresence
580
+ :method: get
581
+ :endpoint: "/Activity/Friends/AllNoPresence/{param1}/"
582
+ get_friends_paged:
583
+ :name: GetFriendsPaged
584
+ :method: get
585
+ :endpoint: "/Activity/Friends/Paged/{membershipType}/{currentPage}/"
586
+ get_groups_followed_by_current_user:
587
+ :name: GetGroupsFollowedByCurrentUser
588
+ :method: get
589
+ :endpoint: "/Activity/Following/Groups/"
590
+ get_groups_followed_by_user:
591
+ :name: GetGroupsFollowedByUser
592
+ :method: get
593
+ :endpoint: "/Activity/User/{param1}/Following/Groups/"
594
+ get_groups_followed_paged_by_current_user:
595
+ :name: GetGroupsFollowedPagedByCurrentUser
596
+ :method: get
597
+ :endpoint: "/Activity/Following/Groups/{param1}/"
598
+ get_groups_followed_paged_by_user:
599
+ :name: GetGroupsFollowedPagedByUser
600
+ :method: get
601
+ :endpoint: "/Activity/User/{param1}/Following/Groups/Paged/{param2}/"
602
+ get_like_and_share_activity_for_user:
603
+ :name: GetLikeAndShareActivityForUser
604
+ :method: get
605
+ :endpoint: "/Activity/User/{param1}/Activities/LikesAndShares/"
606
+ get_like_and_share_activity_for_user_v2:
607
+ :name: GetLikeAndShareActivityForUserV2
608
+ :method: get
609
+ :endpoint: "/Activity/User/{param1}/Activities/LikesAndSharesV2/"
610
+ get_like_share_and_forum_activity_for_user:
611
+ :name: GetLikeShareAndForumActivityForUser
612
+ :method: get
613
+ :endpoint: "/Activity/User/{param1}/Activities/LikeShareAndForum/"
614
+ get_users_followed_by_current_user:
615
+ :name: GetUsersFollowedByCurrentUser
616
+ :method: get
617
+ :endpoint: "/Activity/Following/Users/"
618
+ unfollow_tag:
619
+ :name: UnfollowTag
620
+ :method: post
621
+ :endpoint: "/Activity/Tag/Unfollow/"
622
+ unfollow_user:
623
+ :name: UnfollowUser
624
+ :method: post
625
+ :endpoint: "/Activity/User/{param1}/Unfollow/"
626
+ approve_all_pending:
627
+ :name: ApproveAllPending
628
+ :method: post
629
+ :endpoint: "/Group/{groupId}/Members/ApproveAll/"
630
+ approve_group_membership:
631
+ :name: ApproveGroupMembership
632
+ :method: post
633
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/Approve/"
634
+ approve_group_membership_v2:
635
+ :name: ApproveGroupMembershipV2
636
+ :method: post
637
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/ApproveV2/"
638
+ approve_pending_for_list:
639
+ :name: ApprovePendingForList
640
+ :method: post
641
+ :endpoint: "/Group/{groupId}/Members/ApproveList/"
642
+ ban_member:
643
+ :name: BanMember
644
+ :method: post
645
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/Ban/"
646
+ break_alliance:
647
+ :name: BreakAlliance
648
+ :method: post
649
+ :endpoint: "/Group/{groupId}/Relationship/{allyGroupId}/BreakAlliance/"
650
+ break_alliances:
651
+ :name: BreakAlliances
652
+ :method: post
653
+ :endpoint: "/Group/{groupId}/BreakAlliances/"
654
+ create_group:
655
+ :name: CreateGroup
656
+ :method: post
657
+ :endpoint: "/Group/Create/"
658
+ create_group_v2:
659
+ :name: CreateGroupV2
660
+ :method: post
661
+ :endpoint: "/Group/Create/V2/"
662
+ create_minimal_group:
663
+ :name: CreateMinimalGroup
664
+ :method: post
665
+ :endpoint: "/Group/Create/Minimal/"
666
+ deny_all_pending:
667
+ :name: DenyAllPending
668
+ :method: post
669
+ :endpoint: "/Group/{groupId}/Members/DenyAll/"
670
+ deny_group_membership:
671
+ :name: DenyGroupMembership
672
+ :method: post
673
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/Deny/"
674
+ deny_group_membership_v2:
675
+ :name: DenyGroupMembershipV2
676
+ :method: post
677
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/DenyV2/"
678
+ deny_pending_for_list:
679
+ :name: DenyPendingForList
680
+ :method: post
681
+ :endpoint: "/Group/{groupId}/Members/DenyList/"
682
+ disable_clan_for_group:
683
+ :name: DisableClanForGroup
684
+ :method: post
685
+ :endpoint: "/Group/{groupId}/Clans/Disable/{clanMembershipType}/"
686
+ disband_alliance:
687
+ :name: DisbandAlliance
688
+ :method: post
689
+ :endpoint: "/Group/{groupId}/BreakAllAlliances/"
690
+ edit_group:
691
+ :name: EditGroup
692
+ :method: post
693
+ :endpoint: "/Group/{groupId}/Edit/"
694
+ edit_group_membership:
695
+ :name: EditGroupMembership
696
+ :method: post
697
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/SetMembershipType/{groupMembershipType}/"
698
+ edit_group_v2:
699
+ :name: EditGroupV2
700
+ :method: post
701
+ :endpoint: "/Group/{groupId}/EditV2/"
702
+ enable_clan_for_group:
703
+ :name: EnableClanForGroup
704
+ :method: post
705
+ :endpoint: "/Group/{groupId}/Clans/Enable/{clanMembershipType}/"
706
+ follow_groups_with_group:
707
+ :name: FollowGroupsWithGroup
708
+ :method: post
709
+ :endpoint: "/Group/{groupId}/FollowList/"
710
+ follow_group_with_group:
711
+ :name: FollowGroupWithGroup
712
+ :method: post
713
+ :endpoint: "/Group/{groupId}/Follow/{followGroupId}/"
714
+ get_admins_of_group:
715
+ :name: GetAdminsOfGroup
716
+ :method: get
717
+ :endpoint: "/Group/{groupId}/Admins/"
718
+ get_admins_of_group_v2:
719
+ :name: GetAdminsOfGroupV2
720
+ :method: get
721
+ :endpoint: "/Group/{groupId}/AdminsV2/"
722
+ get_all_founded_groups_for_member:
723
+ :name: GetAllFoundedGroupsForMember
724
+ :method: get
725
+ :endpoint: "/Group/User/{param1}/Founded/All/"
726
+ get_all_groups_for_current_member:
727
+ :name: GetAllGroupsForCurrentMember
728
+ :method: get
729
+ :endpoint: "/Group/MyGroups/All/"
730
+ get_all_groups_for_member:
731
+ :name: GetAllGroupsForMember
732
+ :method: get
733
+ :endpoint: "/Group/User/{membershipId}/All/"
734
+ get_allied_groups:
735
+ :name: GetAlliedGroups
736
+ :method: get
737
+ :endpoint: "/Group/{groupId}/Allies/"
738
+ get_available_avatars_(group):
739
+ :name: GetAvailableAvatars (Group)
740
+ :method: get
741
+ :endpoint: "/Group/GetAvailableAvatars/"
742
+ get_available_themes_(group):
743
+ :name: GetAvailableThemes (Group)
744
+ :method: get
745
+ :endpoint: "/Group/GetAvailableThemes/"
746
+ get_banned_members_of_group:
747
+ :name: GetBannedMembersOfGroup
748
+ :method: get
749
+ :endpoint: "/Group/{groupId}/Banned/"
750
+ get_banned_members_of_group_v2:
751
+ :name: GetBannedMembersOfGroupV2
752
+ :method: get
753
+ :endpoint: "/Group/{groupId}/BannedV2/"
754
+ get_clan_attribute_definitions:
755
+ :name: GetClanAttributeDefinitions
756
+ :method: get
757
+ :endpoint: "/Group/GetClanAttributeDefinitions/"
758
+ get_deleted_groups_for_current_member:
759
+ :name: GetDeletedGroupsForCurrentMember
760
+ :method: get
761
+ :endpoint: "/Group/MyGroups/Deleted/"
762
+ get_founded_groups_for_member:
763
+ :name: GetFoundedGroupsForMember
764
+ :method: get
765
+ :endpoint: "/Group/User/{membershipId}/Founded/{currentPage}/"
766
+ get_group:
767
+ :name: GetGroup
768
+ :method: get
769
+ :endpoint: "/Group/{groupId}/"
770
+ get_group_by_name:
771
+ :name: GetGroupByName
772
+ :method: get
773
+ :endpoint: "/Group/Name/{groupName}/"
774
+ get_groups_followed_by_group:
775
+ :name: GetGroupsFollowedByGroup
776
+ :method: get
777
+ :endpoint: "/Group/{groupId}/Following/{currentPage}/"
778
+ get_groups_following_group:
779
+ :name: GetGroupsFollowingGroup
780
+ :method: get
781
+ :endpoint: "/Group/{groupId}/FollowedBy/{currentPage}/"
782
+ get_group_tag_suggestions:
783
+ :name: GetGroupTagSuggestions
784
+ :method: get
785
+ :endpoint: "/Group/GetGroupTagSuggestions/"
786
+ get_joined_groups_for_current_member:
787
+ :name: GetJoinedGroupsForCurrentMember
788
+ :method: get
789
+ :endpoint: "/Group/MyGroups/"
790
+ get_joined_groups_for_current_member_v2:
791
+ :name: GetJoinedGroupsForCurrentMemberV2
792
+ :method: get
793
+ :endpoint: "/Group/MyGroups/V2/{currentPage}/"
794
+ get_joined_groups_for_member:
795
+ :name: GetJoinedGroupsForMember
796
+ :method: get
797
+ :endpoint: "/Group/User/{membershipId}/"
798
+ get_joined_groups_for_member_v2:
799
+ :name: GetJoinedGroupsForMemberV2
800
+ :method: get
801
+ :endpoint: "/Group/User/{membershipId}/Joined/{currentPage}/"
802
+ get_joined_groups_for_member_v3:
803
+ :name: GetJoinedGroupsForMemberV3
804
+ :method: get
805
+ :endpoint: "/Group/User/{membershipId}/JoinedV3/{currentPage}/"
806
+ get_members_of_clan:
807
+ :name: GetMembersOfClan
808
+ :method: get
809
+ :endpoint: "/Group/{groupId}/ClanMembers/"
810
+ get_members_of_group:
811
+ :name: GetMembersOfGroup
812
+ :method: get
813
+ :endpoint: "/Group/{groupId}/Members/"
814
+ get_members_of_group_v2:
815
+ :name: GetMembersOfGroupV2
816
+ :method: get
817
+ :endpoint: "/Group/{groupId}/MembersV2/"
818
+ get_members_of_group_v3:
819
+ :name: GetMembersOfGroupV3
820
+ :method: get
821
+ :endpoint: "/Group/{groupId}/MembersV3/"
822
+ get_my_clan_memberships:
823
+ :name: GetMyClanMemberships
824
+ :method: get
825
+ :endpoint: "/Group/MyClans/"
826
+ get_pending_clan_memberships:
827
+ :name: GetPendingClanMemberships
828
+ :method: get
829
+ :endpoint: "/Group/{groupId}/Clan/{clanMembershipType}/Pending/{currentPage}/"
830
+ get_pending_groups_for_current_member:
831
+ :name: GetPendingGroupsForCurrentMember
832
+ :method: get
833
+ :endpoint: "/Group/MyPendingGroups/"
834
+ get_pending_groups_for_current_member_v2:
835
+ :name: GetPendingGroupsForCurrentMemberV2
836
+ :method: get
837
+ :endpoint: "/Group/MyPendingGroups/V2/{currentPage}/"
838
+ get_pending_groups_for_member:
839
+ :name: GetPendingGroupsForMember
840
+ :method: get
841
+ :endpoint: "/Group/User/{membershipId}/Pending/"
842
+ get_pending_groups_for_member_v2:
843
+ :name: GetPendingGroupsForMemberV2
844
+ :method: get
845
+ :endpoint: "/Group/User/{membershipId}/PendingV2/{currentPage}/"
846
+ get_pending_memberships:
847
+ :name: GetPendingMemberships
848
+ :method: get
849
+ :endpoint: "/Group/{groupId}/Members/Pending/"
850
+ get_pending_memberships_v2:
851
+ :name: GetPendingMembershipsV2
852
+ :method: get
853
+ :endpoint: "/Group/{groupId}/Members/PendingV2/"
854
+ get_recommended_groups:
855
+ :name: GetRecommendedGroups
856
+ :method: post
857
+ :endpoint: "/Group/Recommended/"
858
+ group_search:
859
+ :name: GroupSearch
860
+ :method: post
861
+ :endpoint: "/Group/Search/"
862
+ invite_clan_member:
863
+ :name: InviteClanMember
864
+ :method: post
865
+ :endpoint: "/Group/{groupId}/InviteToClan/{membershipId}/{clanMembershipType}/"
866
+ invite_group_member:
867
+ :name: InviteGroupMember
868
+ :method: post
869
+ :endpoint: "/Group/{groupId}/Invite/{membershipId}/"
870
+ invite_many_to_join_alliance:
871
+ :name: InviteManyToJoinAlliance
872
+ :method: post
873
+ :endpoint: "/Group/{groupId}/Allies/InviteMany/"
874
+ invite_to_join_alliance:
875
+ :name: InviteToJoinAlliance
876
+ :method: post
877
+ :endpoint: "/Group/{groupId}/Allies/Invite/{allyGroupId}/"
878
+ join_clan_for_group:
879
+ :name: JoinClanForGroup
880
+ :method: post
881
+ :endpoint: "/Group/{groupId}/Clans/Join/{clanMembershipType}/"
882
+ kick_member:
883
+ :name: KickMember
884
+ :method: post
885
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/Kick/"
886
+ leave_clan_for_group:
887
+ :name: LeaveClanForGroup
888
+ :method: post
889
+ :endpoint: "/Group/{groupId}/Clans/Leave/{clanMembershipType}/"
890
+ migrate:
891
+ :name: Migrate
892
+ :method: post
893
+ :endpoint: "/Group/{param1}/Migrate/{param2}/{param3}/"
894
+ override_founder_admin:
895
+ :name: OverrideFounderAdmin
896
+ :method: post
897
+ :endpoint: "/Group/{groupId}/Admin/FounderOverride/{membershipType}/"
898
+ refresh_clan_settings_in_destiny:
899
+ :name: RefreshClanSettingsInDestiny
900
+ :method: post
901
+ :endpoint: "/Group/MyClans/Refresh/{clanMembershipType}/"
902
+ request_group_membership:
903
+ :name: RequestGroupMembership
904
+ :method: post
905
+ :endpoint: "/Group/{groupId}/Members/Apply/"
906
+ request_group_membership_v2:
907
+ :name: RequestGroupMembershipV2
908
+ :method: post
909
+ :endpoint: "/Group/{groupId}/Members/ApplyV2/"
910
+ request_to_join_alliance:
911
+ :name: RequestToJoinAlliance
912
+ :method: post
913
+ :endpoint: "/Group/{groupId}/Allies/RequestToJoin/{allyGroupId}/"
914
+ rescind_group_membership:
915
+ :name: RescindGroupMembership
916
+ :method: post
917
+ :endpoint: "/Group/{groupId}/Members/Rescind/"
918
+ set_group_as_alliance:
919
+ :name: SetGroupAsAlliance
920
+ :method: post
921
+ :endpoint: "/Group/{groupId}/SetAsAlliance/"
922
+ set_privacy:
923
+ :name: SetPrivacy
924
+ :method: post
925
+ :endpoint: "/Group/{groupId}/Privacy/{param2}/"
926
+ unban_member:
927
+ :name: UnbanMember
928
+ :method: post
929
+ :endpoint: "/Group/{groupId}/Members/{membershipId}/Unban/"
930
+ undelete_group:
931
+ :name: UndeleteGroup
932
+ :method: post
933
+ :endpoint: "/Group/{groupId}/Undelete/"
934
+ unfollow_all_groups_with_group:
935
+ :name: UnfollowAllGroupsWithGroup
936
+ :method: post
937
+ :endpoint: "/Group/{groupId}/UnfollowAll/"
938
+ unfollow_groups_with_group:
939
+ :name: UnfollowGroupsWithGroup
940
+ :method: post
941
+ :endpoint: "/Group/{groupId}/UnfollowList/"
942
+ unfollow_group_with_group:
943
+ :name: UnfollowGroupWithGroup
944
+ :method: post
945
+ :endpoint: "/Group/{groupId}/Unfollow/{followGroupId}/"
946
+ flag_item:
947
+ :name: FlagItem
948
+ :method: post
949
+ :endpoint: "/Ignore/Flag/"
950
+ get_ignores_for_user:
951
+ :name: GetIgnoresForUser
952
+ :method: post
953
+ :endpoint: "/Ignore/MyIgnores/"
954
+ get_ignore_status_for_post:
955
+ :name: GetIgnoreStatusForPost
956
+ :method: get
957
+ :endpoint: "/Ignore/MyIgnores/Posts/{param1}/"
958
+ get_ignore_status_for_user:
959
+ :name: GetIgnoreStatusForUser
960
+ :method: get
961
+ :endpoint: "/Ignore/MyIgnores/Users/{param1}/"
962
+ get_report_context:
963
+ :name: GetReportContext
964
+ :method: get
965
+ :endpoint: "/Ignore/ReportContext/{param1}/"
966
+ ignore_item:
967
+ :name: IgnoreItem
968
+ :method: post
969
+ :endpoint: "/Ignore/Ignore/"
970
+ my_last_report:
971
+ :name: MyLastReport
972
+ :method: get
973
+ :endpoint: "/Ignore/MyLastReport/"
974
+ unignore_item:
975
+ :name: UnignoreItem
976
+ :method: post
977
+ :endpoint: "/Ignore/Unignore/"
978
+ get_player_games_by_id:
979
+ :name: GetPlayerGamesById
980
+ :method: get
981
+ :endpoint: "/Game/GetPlayerGamesById/{param1}/"
982
+ reach_model_sneaker_net:
983
+ :name: ReachModelSneakerNet
984
+ :method: post
985
+ :endpoint: "/Game/ReachModelSneakerNet/{param1}/"
986
+ admin_user_search:
987
+ :name: AdminUserSearch
988
+ :method: get
989
+ :endpoint: "/Admin/Member/Search/"
990
+ bulk_edit_post:
991
+ :name: BulkEditPost
992
+ :method: post
993
+ :endpoint: "/Admin/BulkEditPost/"
994
+ get_admin_history:
995
+ :name: GetAdminHistory
996
+ :method: get
997
+ :endpoint: "/Admin/GlobalHistory/{param1}/{param2}/"
998
+ get_assigned_reports:
999
+ :name: GetAssignedReports
1000
+ :method: post
1001
+ :endpoint: "/Admin/Assigned/"
1002
+ get_disciplined_reports_for_member:
1003
+ :name: GetDisciplinedReportsForMember
1004
+ :method: post
1005
+ :endpoint: "/Admin/Member/{param1}/Reports/"
1006
+ get_recent_discipline_and_flag_history_for_member:
1007
+ :name: GetRecentDisciplineAndFlagHistoryForMember
1008
+ :method: get
1009
+ :endpoint: "/Admin/Member/{param1}/RecentIncludingFlags/{param2}"
1010
+ get_resolved_reports:
1011
+ :name: GetResolvedReports
1012
+ :method: post
1013
+ :endpoint: "/Admin/Reports/"
1014
+ get_user_ban_state:
1015
+ :name: GetUserBanState
1016
+ :method: get
1017
+ :endpoint: "/Admin/Member/{param1}/GetBanState/"
1018
+ get_user_post_history:
1019
+ :name: GetUserPostHistory
1020
+ :method: get
1021
+ :endpoint: "/Admin/Member/{param1}/PostHistory/{param2}/"
1022
+ get_user_web_client_ip_history:
1023
+ :name: GetUserWebClientIpHistory
1024
+ :method: get
1025
+ :endpoint: "/Admin/Member/{param1}/GetWebClientIpHistory/"
1026
+ globally_ignore_item:
1027
+ :name: GloballyIgnoreItem
1028
+ :method: post
1029
+ :endpoint: "/Admin/Ignores/GloballyIgnore/"
1030
+ override_ban_on_user:
1031
+ :name: OverrideBanOnUser
1032
+ :method: post
1033
+ :endpoint: "/Admin/Member/{param1}/SetBan/"
1034
+ override_global_ignore:
1035
+ :name: OverrideGlobalIgnore
1036
+ :method: post
1037
+ :endpoint: "/Admin/Ignores/OverrideGlobalIgnore/"
1038
+ override_group_wall_ban_on_user:
1039
+ :name: OverrideGroupWallBanOnUser
1040
+ :method: post
1041
+ :endpoint: "/Admin/Member/{param1}/SetGroupWallBan/"
1042
+ override_msg_ban_on_user:
1043
+ :name: OverrideMsgBanOnUser
1044
+ :method: post
1045
+ :endpoint: "/Admin/Member/{param1}/SetMsgBan/"
1046
+ overturn_report:
1047
+ :name: OverturnReport
1048
+ :method: post
1049
+ :endpoint: "/Admin/Reports/Overturn/"
1050
+ resolve_report:
1051
+ :name: ResolveReport
1052
+ :method: post
1053
+ :endpoint: "/Admin/Assigned/Resolve/"
1054
+ apply_offer_to_current_destiny_membership:
1055
+ :name: ApplyOfferToCurrentDestinyMembership
1056
+ :method: post
1057
+ :endpoint: "/Tokens/ApplyOfferToCurrentDestinyMembership/{param1}/{param2}/"
1058
+ break_bond:
1059
+ :name: BreakBond
1060
+ :method: post
1061
+ :endpoint: "/Tokens/RAF/BreakBond/"
1062
+ claim_and_apply_on_token:
1063
+ :name: ClaimAndApplyOnToken
1064
+ :method: post
1065
+ :endpoint: "/Tokens/ClaimAndApplyToken/{tokenType}/"
1066
+ claim_token:
1067
+ :name: ClaimToken
1068
+ :method: post
1069
+ :endpoint: "/Tokens/Claim/"
1070
+ consume_marketplace_platform_code_offer:
1071
+ :name: ConsumeMarketplacePlatformCodeOffer
1072
+ :method: post
1073
+ :endpoint: "/Tokens/ConsumeMarketplacePlatformCodeOffer/{param1}/{param2}/{param3}/"
1074
+ get_current_user_offer_history:
1075
+ :name: GetCurrentUserOfferHistory
1076
+ :method: get
1077
+ :endpoint: "/Tokens/OfferHistory/"
1078
+ get_current_user_throttle_state:
1079
+ :name: GetCurrentUserThrottleState
1080
+ :method: get
1081
+ :endpoint: "/Tokens/ThrottleState/"
1082
+ get_raf_eligibility:
1083
+ :name: GetRAFEligibility
1084
+ :method: get
1085
+ :endpoint: "/Tokens/RAF/GetEligibility/"
1086
+ marketplace_platform_code_offer_history:
1087
+ :name: MarketplacePlatformCodeOfferHistory
1088
+ :method: get
1089
+ :endpoint: "/Tokens/MarketplacePlatformCodeOfferHistory/"
1090
+ raf_claim:
1091
+ :name: RAFClaim
1092
+ :method: post
1093
+ :endpoint: "/Tokens/RAF/Claim/"
1094
+ raf_generate_referral_code:
1095
+ :name: RAFGenerateReferralCode
1096
+ :method: post
1097
+ :endpoint: "/Tokens/RAF/GenerateReferralCode/{param1}/"
1098
+ raf_get_new_player_bond_details:
1099
+ :name: RAFGetNewPlayerBondDetails
1100
+ :method: get
1101
+ :endpoint: "/Tokens/RAF/GetNewPlayerBondDetails/"
1102
+ raf_get_veteran_bond_details:
1103
+ :name: RAFGetVeteranBondDetails
1104
+ :method: get
1105
+ :endpoint: "/Tokens/RAF/GetVeteranBondDetails/"
1106
+ verify_age:
1107
+ :name: VerifyAge
1108
+ :method: post
1109
+ :endpoint: "/Tokens/VerifyAge/"
1110
+ buy_item:
1111
+ :name: BuyItem
1112
+ :method: post
1113
+ :endpoint: "/Destiny/BuyItem/"
1114
+ equip_item:
1115
+ :name: EquipItem
1116
+ :method: post
1117
+ :endpoint: "/Destiny/EquipItem/"
1118
+ equip_items:
1119
+ :name: EquipItems
1120
+ :method: post
1121
+ :endpoint: "/Destiny/EquipItems/"
1122
+ get_account:
1123
+ :name: GetAccount
1124
+ :method: get
1125
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/"
1126
+ get_account_summary:
1127
+ :name: GetAccountSummary
1128
+ :method: get
1129
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Summary/"
1130
+ get_activity_blob:
1131
+ :name: GetActivityBlob
1132
+ :method: get
1133
+ :endpoint: "/Destiny/Stats/ActivityBlob/{e}/"
1134
+ get_activity_history:
1135
+ :name: GetActivityHistory
1136
+ :method: get
1137
+ :endpoint: "/Destiny/Stats/ActivityHistory/{membershipType}/{destinyMembershipId}/{characterId}/"
1138
+ get_advisors_for_account:
1139
+ :name: GetAdvisorsForAccount
1140
+ :method: get
1141
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Advisors/"
1142
+ get_advisors_for_character:
1143
+ :name: GetAdvisorsForCharacter
1144
+ :method: get
1145
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Advisors/"
1146
+ get_advisors_for_character_v2:
1147
+ :name: GetAdvisorsForCharacterV2
1148
+ :method: get
1149
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Advisors/V2/"
1150
+ get_advisors_for_current_character:
1151
+ :name: GetAdvisorsForCurrentCharacter
1152
+ :method: get
1153
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Advisors/"
1154
+ get_all_items_summary:
1155
+ :name: GetAllItemsSummary
1156
+ :method: get
1157
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Items/"
1158
+ get_all_vendors_for_current_character:
1159
+ :name: GetAllVendorsForCurrentCharacter
1160
+ :method: get
1161
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendors/"
1162
+ get_bond_advisors:
1163
+ :name: GetBondAdvisors
1164
+ :method: get
1165
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Advisors/Bonds/"
1166
+ get_character:
1167
+ :name: GetCharacter
1168
+ :method: get
1169
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Complete/"
1170
+ get_character_activities:
1171
+ :name: GetCharacterActivities
1172
+ :method: get
1173
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Activities/"
1174
+ get_character_inventory:
1175
+ :name: GetCharacterInventory
1176
+ :method: get
1177
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Inventory/"
1178
+ get_character_inventory_summary:
1179
+ :name: GetCharacterInventorySummary
1180
+ :method: get
1181
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Inventory/Summary/"
1182
+ get_character_progression:
1183
+ :name: GetCharacterProgression
1184
+ :method: get
1185
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Progression/"
1186
+ get_character_summary:
1187
+ :name: GetCharacterSummary
1188
+ :method: get
1189
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/"
1190
+ get_clan_leaderboards:
1191
+ :name: GetClanLeaderboards
1192
+ :method: get
1193
+ :endpoint: "/Destiny/Stats/ClanLeaderboards/{param1}/"
1194
+ get_destiny_aggregate_activity_stats:
1195
+ :name: GetDestinyAggregateActivityStats
1196
+ :method: get
1197
+ :endpoint: "/Destiny/Stats/AggregateActivityStats/{membershipType}/{destinyMembershipId}/{characterId}/"
1198
+ get_destiny_explorer_items:
1199
+ :name: GetDestinyExplorerItems
1200
+ :method: get
1201
+ :endpoint: "/Destiny/Explorer/Items/"
1202
+ get_destiny_explorer_talent_node_steps:
1203
+ :name: GetDestinyExplorerTalentNodeSteps
1204
+ :method: get
1205
+ :endpoint: "/Destiny/Explorer/TalentNodeSteps/"
1206
+ get_destiny_live_tile_content_items:
1207
+ :name: GetDestinyLiveTileContentItems
1208
+ :method: get
1209
+ :endpoint: "/Destiny/LiveTiles/"
1210
+ get_destiny_manifest:
1211
+ :name: GetDestinyManifest
1212
+ :method: get
1213
+ :endpoint: "/Destiny/Manifest/"
1214
+ get_destiny_single_definition:
1215
+ :name: GetDestinySingleDefinition
1216
+ :method: get
1217
+ :endpoint: "/Destiny/Manifest/{definitionType}/{definitionId}/"
1218
+ get_excellence_badges:
1219
+ :name: GetExcellenceBadges
1220
+ :method: get
1221
+ :endpoint: "/Destiny/Stats/GetExcellenceBadges/{membershipType}/{destinyMembershipId}/"
1222
+ get_grimoire_by_membership:
1223
+ :name: GetGrimoireByMembership
1224
+ :method: get
1225
+ :endpoint: "/Destiny/Vanguard/Grimoire/{membershipType}/{destinyMembershipId}/"
1226
+ get_grimoire_definition:
1227
+ :name: GetGrimoireDefinition
1228
+ :method: get
1229
+ :endpoint: "/Destiny/Vanguard/Grimoire/Definition/"
1230
+ get_historical_stats:
1231
+ :name: GetHistoricalStats
1232
+ :method: get
1233
+ :endpoint: "/Destiny/Stats/{membershipType}/{destinyMembershipId}/{characterId}/"
1234
+ get_historical_stats_definition:
1235
+ :name: GetHistoricalStatsDefinition
1236
+ :method: get
1237
+ :endpoint: "/Destiny/Stats/Definition/"
1238
+ get_historical_stats_for_account:
1239
+ :name: GetHistoricalStatsForAccount
1240
+ :method: get
1241
+ :endpoint: "/Destiny/Stats/Account/{membershipType}/{destinyMembershipId}/"
1242
+ get_item_detail:
1243
+ :name: GetItemDetail
1244
+ :method: get
1245
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Inventory/{itemInstanceId}/"
1246
+ get_item_reference_detail:
1247
+ :name: GetItemReferenceDetail
1248
+ :method: get
1249
+ :endpoint: "/Destiny/{param1}/Account/{param2}/Character/{param3}/ItemReference/{param4}/"
1250
+ get_leaderboards:
1251
+ :name: GetLeaderboards
1252
+ :method: get
1253
+ :endpoint: "/Destiny/Stats/Leaderboards/{membershipType}/{destinyMembershipId}/"
1254
+ get_leaderboards_for_character:
1255
+ :name: GetLeaderboardsForCharacter
1256
+ :method: get
1257
+ :endpoint: "/Destiny/Stats/Leaderboards/{membershipType}/{destinyMembershipId}/{characterId}/"
1258
+ get_leaderboards_for_psn:
1259
+ :name: GetLeaderboardsForPsn
1260
+ :method: get
1261
+ :endpoint: "/Destiny/Stats/LeaderboardsForPsn/"
1262
+ get_membership_id_by_display_name:
1263
+ :name: GetMembershipIdByDisplayName
1264
+ :method: get
1265
+ :endpoint: "/Destiny/{membershipType}/Stats/GetMembershipIdByDisplayName/{displayName}/"
1266
+ get_my_grimoire:
1267
+ :name: GetMyGrimoire
1268
+ :method: get
1269
+ :endpoint: "/Destiny/Vanguard/Grimoire/{membershipType}/"
1270
+ get_post_game_carnage_report:
1271
+ :name: GetPostGameCarnageReport
1272
+ :method: get
1273
+ :endpoint: "/Destiny/Stats/PostGameCarnageReport/{activityInstanceId}/"
1274
+ get_public_advisors:
1275
+ :name: GetPublicAdvisors
1276
+ :method: get
1277
+ :endpoint: "/Destiny/Advisors/"
1278
+ get_public_advisors_v2:
1279
+ :name: GetPublicAdvisorsV2
1280
+ :method: get
1281
+ :endpoint: "/Destiny/Advisors/V2/"
1282
+ get_public_vendor:
1283
+ :name: GetPublicVendor
1284
+ :method: get
1285
+ :endpoint: "/Destiny/Vendors/{vendorId}/"
1286
+ get_public_vendor_with_metadata:
1287
+ :name: GetPublicVendorWithMetadata
1288
+ :method: get
1289
+ :endpoint: "/Destiny/Vendors/{vendorId}/Metadata/"
1290
+ get_public_xur_vendor:
1291
+ :name: GetPublicXurVendor
1292
+ :method: get
1293
+ :endpoint: "/Destiny/Advisors/Xur/"
1294
+ get_record_book_completion_status:
1295
+ :name: GetRecordBookCompletionStatus
1296
+ :method: get
1297
+ :endpoint: "/Destiny/{membershipType}/MyAccount/RecordBooks/{recordBookHash}/Completion/"
1298
+ get_special_event_advisors:
1299
+ :name: GetSpecialEventAdvisors
1300
+ :method: get
1301
+ :endpoint: "/Destiny/Events/"
1302
+ get_triumphs:
1303
+ :name: GetTriumphs
1304
+ :method: get
1305
+ :endpoint: "/Destiny/{membershipType}/Account/{destinyMembershipId}/Triumphs/"
1306
+ get_unique_weapon_history:
1307
+ :name: GetUniqueWeaponHistory
1308
+ :method: get
1309
+ :endpoint: "/Destiny/Stats/UniqueWeapons/{membershipType}/{destinyMembershipId}/{characterId}/"
1310
+ get_vault:
1311
+ :name: GetVault
1312
+ :method: get
1313
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Vault/"
1314
+ get_vault_summary:
1315
+ :name: GetVaultSummary
1316
+ :method: get
1317
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Vault/Summary/"
1318
+ get_vendor_for_current_character:
1319
+ :name: GetVendorForCurrentCharacter
1320
+ :method: get
1321
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendor/{vendorId}/"
1322
+ get_vendor_for_current_character_with_metadata:
1323
+ :name: GetVendorForCurrentCharacterWithMetadata
1324
+ :method: get
1325
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendor/{vendorId}/Metadata/"
1326
+ get_vendor_item_detail_for_current_character:
1327
+ :name: GetVendorItemDetailForCurrentCharacter
1328
+ :method: get
1329
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendor/{vendorId}/Item/{itemId}/"
1330
+ get_vendor_item_detail_for_current_character_with_metadata:
1331
+ :name: GetVendorItemDetailForCurrentCharacterWithMetadata
1332
+ :method: get
1333
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendor/{vendorId}/Item/{itemId}/Metadata/"
1334
+ get_vendor_summaries_for_current_character:
1335
+ :name: GetVendorSummariesForCurrentCharacter
1336
+ :method: get
1337
+ :endpoint: "/Destiny/{membershipType}/MyAccount/Character/{characterId}/Vendors/Summaries/"
1338
+ refund_item:
1339
+ :name: RefundItem
1340
+ :method: post
1341
+ :endpoint: "/Destiny/{param1}/RefundItem/"
1342
+ search_destiny_player:
1343
+ :name: SearchDestinyPlayer
1344
+ :method: get
1345
+ :endpoint: "/Destiny/SearchDestinyPlayer/{membershipType}/{displayName}/"
1346
+ set_item_lock_state:
1347
+ :name: SetItemLockState
1348
+ :method: post
1349
+ :endpoint: "/Destiny/SetLockState/"
1350
+ set_quest_tracked_state:
1351
+ :name: SetQuestTrackedState
1352
+ :method: post
1353
+ :endpoint: "/Destiny/SetQuestTrackedState/"
1354
+ transfer_item:
1355
+ :name: TransferItem
1356
+ :method: post
1357
+ :endpoint: "/Destiny/TransferItem/"
1358
+ admin_set_community_live_member_ban_status:
1359
+ :name: AdminSetCommunityLiveMemberBanStatus
1360
+ :method: post
1361
+ :endpoint: "/CommunityContent/Live/Partnerships/{param1}/{param2}/Ban/{param3}/"
1362
+ admin_set_community_live_member_feature_status:
1363
+ :name: AdminSetCommunityLiveMemberFeatureStatus
1364
+ :method: post
1365
+ :endpoint: "/CommunityContent/Live/Partnerships/{param1}/{param2}/Feature/{param3}/"
1366
+ alter_approval_state:
1367
+ :name: AlterApprovalState
1368
+ :method: post
1369
+ :endpoint: "/CommunityContent/AlterApprovalState/{param1}/"
1370
+ edit_content:
1371
+ :name: EditContent
1372
+ :method: post
1373
+ :endpoint: "/CommunityContent/Edit/{param1}/"
1374
+ get_admin_community_live_statuses:
1375
+ :name: GetAdminCommunityLiveStatuses
1376
+ :method: get
1377
+ :endpoint: "/CommunityContent/Live/Admin/{param1}/{param2}/"
1378
+ get_approval_queue:
1379
+ :name: GetApprovalQueue
1380
+ :method: get
1381
+ :endpoint: "/CommunityContent/Queue/{param1}/{param2}/{param3}/"
1382
+ get_community_content:
1383
+ :name: GetCommunityContent
1384
+ :method: get
1385
+ :endpoint: "/CommunityContent/Get/{param1}/{param2}/{param3}/"
1386
+ get_community_featured_activity_modes:
1387
+ :name: GetCommunityFeaturedActivityModes
1388
+ :method: get
1389
+ :endpoint: "/CommunityContent/Live/ActivityModes/Featured/"
1390
+ get_community_live_statuses:
1391
+ :name: GetCommunityLiveStatuses
1392
+ :method: get
1393
+ :endpoint: "/CommunityContent/Live/All/{param1}/{param2}/{param3}/"
1394
+ get_community_live_statuses_for_clanmates:
1395
+ :name: GetCommunityLiveStatusesForClanmates
1396
+ :method: get
1397
+ :endpoint: "/CommunityContent/Live/Clan/{param1}/{param2}/{param3}/"
1398
+ get_community_live_statuses_for_friends:
1399
+ :name: GetCommunityLiveStatusesForFriends
1400
+ :method: get
1401
+ :endpoint: "/CommunityContent/Live/Friends/{param1}/{param2}/{param3}/"
1402
+ get_featured_community_live_statuses:
1403
+ :name: GetFeaturedCommunityLiveStatuses
1404
+ :method: get
1405
+ :endpoint: "/CommunityContent/Live/Featured/{param1}/{param2}/{param3}/"
1406
+ submit_content:
1407
+ :name: SubmitContent
1408
+ :method: post
1409
+ :endpoint: "/CommunityContent/Submit/"
1410
+ get_available_locales:
1411
+ :name: GetAvailableLocales
1412
+ :method: get
1413
+ :endpoint: "//GetAvailableLocales/"
1414
+ get_common_settings:
1415
+ :name: GetCommonSettings
1416
+ :method: get
1417
+ :endpoint: "//Settings/"
1418
+ get_global_alerts:
1419
+ :name: GetGlobalAlerts
1420
+ :method: get
1421
+ :endpoint: "//GlobalAlerts/"
1422
+ get_system_status:
1423
+ :name: GetSystemStatus
1424
+ :method: get
1425
+ :endpoint: "//Status/{param1}/"
1426
+ hello_world:
1427
+ :name: HelloWorld
1428
+ :method: get
1429
+ :endpoint: "//HelloWorld/"