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