teamsnap_rb 2.0.0.beta → 2.0.0.beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/lib/teamsnap.rb +2 -2
- data/lib/teamsnap/collection.rb +1 -1
- data/lib/teamsnap/response.rb +1 -1
- data/lib/teamsnap/version.rb +1 -1
- data/spec/cassettes/apiv3-init.yml +89 -286
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +9 -9
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/passes_them_to_the_faraday_client_using_method_missing.yml +9 -9
- data/spec/cassettes/teamsnap__collection/adds_find_if_search_is_available.yml +12 -12
- data/spec/cassettes/teamsnap__collection/adds_href_to_items.yml +10 -10
- data/spec/cassettes/teamsnap__collection/can_follow_plural_links.yml +39 -39
- data/spec/cassettes/teamsnap__collection/can_follow_singular_links.yml +22 -22
- data/spec/cassettes/teamsnap__collection/can_handle_links_with_no_data.yml +19 -19
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands.yml +10 -10
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands_with_multiple_params.yml +9 -9
- data/spec/cassettes/teamsnap__collection/handles_fetching_data_via_queries.yml +12 -12
- data/spec/cassettes/teamsnap__collection/handles_queries_with_no_data.yml +9 -9
- data/spec/cassettes/teamsnap__collection/raises_an_exception_if_find_returns_nothing.yml +9 -9
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +23 -23
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +19 -19
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +19 -19
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +22 -22
- data/spec/cassettes/teamsnap__structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +9 -9
- data/spec/cassettes/teamsnap__structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +9 -9
- data/spec/cassettes/teamsnap__structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_empty_bulk_load.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_bulk_load/{can_handle_an_error_with_bulk_load.yml → can_handle_an_error_with_bulk_load_without_a_team_id.yml} +7 -7
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_use_bulk_load.yml +30 -30
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_DELETE_on_the_given_client.yml +52 -57
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_GET_on_the_given_client.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_PATCH_on_the_given_client.yml +53 -57
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_POST_on_the_given_client.yml +53 -57
- data/spec/cassettes/teamsnap_rb/_run/processes_the_response.yml +36 -36
- data/spec/teamsnap/collection_spec.rb +2 -2
- data/spec/teamsnap_spec.rb +12 -0
- metadata +4 -46
- data/spec/cassettes/client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +0 -56
- data/spec/cassettes/structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +0 -110
- data/spec/cassettes/structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +0 -57
- data/spec/cassettes/structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +0 -56
- data/spec/cassettes/structure/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +0 -56
- data/spec/cassettes/teamsnap__collection/can_handle_no_argument_errors_generated_by_command.yml +0 -42
- data/spec/cassettes/teamsnap_rb/adds_find_if_search_is_available.yml +0 -61
- data/spec/cassettes/teamsnap_rb/adds_href_to_items.yml +0 -62
- data/spec/cassettes/teamsnap_rb/can_follow_plural_links.yml +0 -179
- data/spec/cassettes/teamsnap_rb/can_follow_singular_links.yml +0 -120
- data/spec/cassettes/teamsnap_rb/can_handle_links_with_no_data.yml +0 -107
- data/spec/cassettes/teamsnap_rb/can_handle_no_argument_errors_generated_by_command.yml +0 -42
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands.yml +0 -64
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands_with_multiple_params.yml +0 -70
- data/spec/cassettes/teamsnap_rb/handles_fetching_data_via_queries.yml +0 -61
- data/spec/cassettes/teamsnap_rb/handles_queries_with_no_data.yml +0 -57
- data/spec/cassettes/teamsnap_rb/raises_an_exception_if_find_returns_nothing.yml +0 -57
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +0 -117
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +0 -111
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +0 -111
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +0 -124
@@ -2,15 +2,15 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: patch
|
5
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
5
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=771a749e-9181-4a68-8b02-1da81b0c18c8&hmac_timestamp=1458775795
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: "{}"
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.9.
|
11
|
+
- Faraday v0.9.2
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- a8dc211212ba4e07e1a37ed056cb804a599f17b0cf3fb7bb31720805caecb751
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 404
|
@@ -19,11 +19,11 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- text/html; charset=utf-8
|
21
21
|
Content-Length:
|
22
|
-
- '
|
22
|
+
- '210960'
|
23
23
|
X-Request-Id:
|
24
|
-
-
|
24
|
+
- 291c3fe6-0466-4d16-974d-28775f85e60c
|
25
25
|
X-Runtime:
|
26
|
-
- '0.
|
26
|
+
- '0.360579'
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Server:
|
@@ -72,7 +72,8 @@ http_interactions:
|
|
72
72
|
\ }\n var toggleEnvDump = function() {\n return toggle('env_dump');\n
|
73
73
|
\ }\n </script>\n</head>\n<body>\n\n<header>\n <h1>Routing Error</h1>\n</header>\n<div
|
74
74
|
id=\"container\">\n <h2>No route matches [PATCH] "/"</h2>\n\n \n<p><code>Rails.root:
|
75
|
-
/home/
|
75
|
+
/home/dustinmccraw/apiv3</code></p>\n\n<div id=\"traces\">\n <a href=\"#\"
|
76
|
+
onclick=\"hide('Framework-Trace');hide('Full-Trace');show('Application-Trace');;
|
76
77
|
return false;\">Application Trace</a> |\n <a href=\"#\" onclick=\"hide('Application-Trace');hide('Full-Trace');show('Framework-Trace');;
|
77
78
|
return false;\">Framework Trace</a> |\n <a href=\"#\" onclick=\"hide('Application-Trace');hide('Framework-Trace');show('Full-Trace');;
|
78
79
|
return false;\">Full Trace</a> \n\n <div id=\"Application-Trace\" style=\"display:
|
@@ -111,7 +112,6 @@ http_interactions:
|
|
111
112
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/engine.rb:514:in
|
112
113
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/application.rb:144:in
|
113
114
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
114
|
-
`call'\nvendor/bundle/ruby/2.1.0/gems/rack-1.5.5/lib/rack/content_length.rb:14:in
|
115
115
|
`call'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:86:in
|
116
116
|
`block in pre_process'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
117
117
|
`catch'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
@@ -121,15 +121,11 @@ http_interactions:
|
|
121
121
|
`run_machine'\nvendor/bundle/ruby/2.1.0/gems/eventmachine-1.0.7/lib/eventmachine.rb:187:in
|
122
122
|
`run'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/backends/base.rb:73:in
|
123
123
|
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/server.rb:162:in
|
124
|
-
`start'\nvendor/bundle/ruby/2.1.0/gems/
|
125
|
-
`
|
126
|
-
`
|
127
|
-
`
|
128
|
-
|
129
|
-
`tap'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:76:in
|
130
|
-
`server'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:40:in
|
131
|
-
`run_command!'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands.rb:17:in
|
132
|
-
`<top (required)>'\nbin/rails:4:in `require'\nbin/rails:4:in
|
124
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/controllers/controller.rb:87:in
|
125
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:200:in
|
126
|
+
`run_command'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:156:in
|
127
|
+
`run!'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/bin/thin:6:in `<top
|
128
|
+
(required)>'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in `load'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in
|
133
129
|
`<main>'</code></pre>\n </div>\n <div id=\"Full-Trace\" style=\"display:
|
134
130
|
none;\">\n <pre><code>vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.14.2/lib/action_dispatch/middleware/debug_exceptions.rb:21:in
|
135
131
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
@@ -165,7 +161,6 @@ http_interactions:
|
|
165
161
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/engine.rb:514:in
|
166
162
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/application.rb:144:in
|
167
163
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
168
|
-
`call'\nvendor/bundle/ruby/2.1.0/gems/rack-1.5.5/lib/rack/content_length.rb:14:in
|
169
164
|
`call'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:86:in
|
170
165
|
`block in pre_process'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
171
166
|
`catch'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
@@ -175,15 +170,11 @@ http_interactions:
|
|
175
170
|
`run_machine'\nvendor/bundle/ruby/2.1.0/gems/eventmachine-1.0.7/lib/eventmachine.rb:187:in
|
176
171
|
`run'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/backends/base.rb:73:in
|
177
172
|
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/server.rb:162:in
|
178
|
-
`start'\nvendor/bundle/ruby/2.1.0/gems/
|
179
|
-
`
|
180
|
-
`
|
181
|
-
`
|
182
|
-
|
183
|
-
`tap'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:76:in
|
184
|
-
`server'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:40:in
|
185
|
-
`run_command!'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands.rb:17:in
|
186
|
-
`<top (required)>'\nbin/rails:4:in `require'\nbin/rails:4:in
|
173
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/controllers/controller.rb:87:in
|
174
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:200:in
|
175
|
+
`run_command'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:156:in
|
176
|
+
`run!'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/bin/thin:6:in `<top
|
177
|
+
(required)>'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in `load'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in
|
187
178
|
`<main>'</code></pre>\n </div>\n</div>\n\n\n <h2>\n Routes\n
|
188
179
|
\ </h2>\n\n <p>\n Routes match in priority from top to bottom\n
|
189
180
|
\ </p>\n\n \n<table id='route_table' class='route_table'>\n <thead>\n
|
@@ -2274,35 +2265,40 @@ http_interactions:
|
|
2274
2265
|
\ search_users<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2275
2266
|
\ GET\n </td>\n <td data-route-path='/users/search(.:format)' data-regexp='^\\/users\\/search(?:\\.([^\\/.?]+))?$'>\n
|
2276
2267
|
\ /users/search(.:format)\n </td>\n <td data-route-reqs='UserApp'>\n UserApp\n
|
2277
|
-
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='
|
2278
|
-
\
|
2279
|
-
\ <td data-route-verb='
|
2280
|
-
data-regexp='^\\/
|
2281
|
-
\
|
2282
|
-
\
|
2283
|
-
|
2284
|
-
|
2285
|
-
\
|
2286
|
-
\
|
2287
|
-
\
|
2288
|
-
|
2289
|
-
\ </td>\n <td data-route-
|
2290
|
-
|
2291
|
-
\ TslMetadatumApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2292
|
-
\ <td data-route-name='tsl_metadatum'>\n tsl_metadatum<span class='helper'>_path</span>\n
|
2293
|
-
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata/:id(.:format)'
|
2294
|
-
data-regexp='^\\/tsl_metadata\\/([^\\/.?]+)(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata/:id(.:format)\n
|
2268
|
+
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='send_trial_expiring_reminder'>\n
|
2269
|
+
\ send_trial_expiring_reminder<span class='helper'>_path</span>\n </td>\n
|
2270
|
+
\ <td data-route-verb='POST'>\n POST\n </td>\n <td data-route-path='/users/send_trial_expiring_reminder(.:format)'
|
2271
|
+
data-regexp='^\\/users\\/send_trial_expiring_reminder(?:\\.([^\\/.?]+))?$'>\n
|
2272
|
+
\ /users/send_trial_expiring_reminder(.:format)\n </td>\n <td data-route-reqs='UserApp'>\n
|
2273
|
+
\ UserApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td
|
2274
|
+
data-route-name='generate_firebase_token'>\n generate_firebase_token<span
|
2275
|
+
class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n GET\n
|
2276
|
+
\ </td>\n <td data-route-path='/generate_firebase_token(.:format)' data-regexp='^\\/generate_firebase_token(?:\\.([^\\/.?]+))?$'>\n
|
2277
|
+
\ /generate_firebase_token(.:format)\n </td>\n <td data-route-reqs='GenerateFirebaseTokenApp'>\n
|
2278
|
+
\ GenerateFirebaseTokenApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2279
|
+
\ <td data-route-name='tsl_metadata'>\n tsl_metadata<span class='helper'>_path</span>\n
|
2280
|
+
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata(.:format)'
|
2281
|
+
data-regexp='^\\/tsl_metadata(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata(.:format)\n
|
2295
2282
|
\ </td>\n <td data-route-reqs='TslMetadatumApp'>\n TslMetadatumApp\n </td>\n</tr>\n<tr
|
2296
|
-
class='route_row' data-helper='path'>\n <td data-route-name='
|
2297
|
-
\
|
2298
|
-
|
2299
|
-
|
2300
|
-
\
|
2301
|
-
|
2302
|
-
\
|
2303
|
-
data-regexp='^\\/
|
2304
|
-
\
|
2305
|
-
class='route_row' data-helper='path'>\n
|
2283
|
+
class='route_row' data-helper='path'>\n <td data-route-name='search_tsl_metadata'>\n
|
2284
|
+
\ search_tsl_metadata<span class='helper'>_path</span>\n </td>\n <td
|
2285
|
+
data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata/search(.:format)'
|
2286
|
+
data-regexp='^\\/tsl_metadata\\/search(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata/search(.:format)\n
|
2287
|
+
\ </td>\n <td data-route-reqs='TslMetadatumApp'>\n TslMetadatumApp\n </td>\n</tr>\n<tr
|
2288
|
+
class='route_row' data-helper='path'>\n <td data-route-name='tsl_metadatum'>\n
|
2289
|
+
\ tsl_metadatum<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2290
|
+
\ GET\n </td>\n <td data-route-path='/tsl_metadata/:id(.:format)' data-regexp='^\\/tsl_metadata\\/([^\\/.?]+)(?:\\.([^\\/.?]+))?$'>\n
|
2291
|
+
\ /tsl_metadata/:id(.:format)\n </td>\n <td data-route-reqs='TslMetadatumApp'>\n
|
2292
|
+
\ TslMetadatumApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2293
|
+
\ <td data-route-name='tsl_photos'>\n tsl_photos<span class='helper'>_path</span>\n
|
2294
|
+
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_photos(.:format)'
|
2295
|
+
data-regexp='^\\/tsl_photos(?:\\.([^\\/.?]+))?$'>\n /tsl_photos(.:format)\n
|
2296
|
+
\ </td>\n <td data-route-reqs='TslPhotoApp'>\n TslPhotoApp\n </td>\n</tr>\n<tr
|
2297
|
+
class='route_row' data-helper='path'>\n <td data-route-name='tsl_chats'>\n
|
2298
|
+
\ tsl_chats<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2299
|
+
\ GET\n </td>\n <td data-route-path='/tsl_chats(.:format)' data-regexp='^\\/tsl_chats(?:\\.([^\\/.?]+))?$'>\n
|
2300
|
+
\ /tsl_chats(.:format)\n </td>\n <td data-route-reqs='TslChatApp'>\n TslChatApp\n
|
2301
|
+
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='send_tsl_chat_push'>\n
|
2306
2302
|
\ send_tsl_chat_push<span class='helper'>_path</span>\n </td>\n <td
|
2307
2303
|
data-route-verb='POST'>\n POST\n </td>\n <td data-route-path='/tsl_chats/send_push(.:format)'
|
2308
2304
|
data-regexp='^\\/tsl_chats\\/send_push(?:\\.([^\\/.?]+))?$'>\n /tsl_chats/send_push(.:format)\n
|
@@ -2399,6 +2395,6 @@ http_interactions:
|
|
2399
2395
|
+ noMatchText;\n }\n }\n }\n\n setupMatchPaths();\n setupRouteToggleHelperLinks();\n</script>\n\n</div>\n\n\n</body>\n</html>\n"
|
2400
2396
|
http_version: '1.1'
|
2401
2397
|
adapter_metadata:
|
2402
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
2403
|
-
recorded_at:
|
2398
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=771a749e-9181-4a68-8b02-1da81b0c18c8&hmac_timestamp=1458775795
|
2399
|
+
recorded_at: Wed, 23 Mar 2016 23:29:55 GMT
|
2404
2400
|
recorded_with: VCR 2.9.3
|
@@ -2,15 +2,15 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
5
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=b5b56e97-94bb-46b9-ba52-488440a89240&hmac_timestamp=1458775794
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: "{}"
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.9.
|
11
|
+
- Faraday v0.9.2
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- 73ce36b925c113a8bf319d1e40899537ab2a58d955c5964985f3badfe1b5bf37
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 404
|
@@ -19,11 +19,11 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- text/html; charset=utf-8
|
21
21
|
Content-Length:
|
22
|
-
- '
|
22
|
+
- '210959'
|
23
23
|
X-Request-Id:
|
24
|
-
-
|
24
|
+
- 9ee55b09-fbdd-4e4a-9538-711cf18e8bfe
|
25
25
|
X-Runtime:
|
26
|
-
- '0.
|
26
|
+
- '0.670414'
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Server:
|
@@ -72,7 +72,8 @@ http_interactions:
|
|
72
72
|
\ }\n var toggleEnvDump = function() {\n return toggle('env_dump');\n
|
73
73
|
\ }\n </script>\n</head>\n<body>\n\n<header>\n <h1>Routing Error</h1>\n</header>\n<div
|
74
74
|
id=\"container\">\n <h2>No route matches [POST] "/"</h2>\n\n \n<p><code>Rails.root:
|
75
|
-
/home/
|
75
|
+
/home/dustinmccraw/apiv3</code></p>\n\n<div id=\"traces\">\n <a href=\"#\"
|
76
|
+
onclick=\"hide('Framework-Trace');hide('Full-Trace');show('Application-Trace');;
|
76
77
|
return false;\">Application Trace</a> |\n <a href=\"#\" onclick=\"hide('Application-Trace');hide('Full-Trace');show('Framework-Trace');;
|
77
78
|
return false;\">Framework Trace</a> |\n <a href=\"#\" onclick=\"hide('Application-Trace');hide('Framework-Trace');show('Full-Trace');;
|
78
79
|
return false;\">Full Trace</a> \n\n <div id=\"Application-Trace\" style=\"display:
|
@@ -111,7 +112,6 @@ http_interactions:
|
|
111
112
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/engine.rb:514:in
|
112
113
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/application.rb:144:in
|
113
114
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
114
|
-
`call'\nvendor/bundle/ruby/2.1.0/gems/rack-1.5.5/lib/rack/content_length.rb:14:in
|
115
115
|
`call'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:86:in
|
116
116
|
`block in pre_process'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
117
117
|
`catch'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
@@ -121,15 +121,11 @@ http_interactions:
|
|
121
121
|
`run_machine'\nvendor/bundle/ruby/2.1.0/gems/eventmachine-1.0.7/lib/eventmachine.rb:187:in
|
122
122
|
`run'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/backends/base.rb:73:in
|
123
123
|
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/server.rb:162:in
|
124
|
-
`start'\nvendor/bundle/ruby/2.1.0/gems/
|
125
|
-
`
|
126
|
-
`
|
127
|
-
`
|
128
|
-
|
129
|
-
`tap'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:76:in
|
130
|
-
`server'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:40:in
|
131
|
-
`run_command!'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands.rb:17:in
|
132
|
-
`<top (required)>'\nbin/rails:4:in `require'\nbin/rails:4:in
|
124
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/controllers/controller.rb:87:in
|
125
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:200:in
|
126
|
+
`run_command'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:156:in
|
127
|
+
`run!'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/bin/thin:6:in `<top
|
128
|
+
(required)>'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in `load'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in
|
133
129
|
`<main>'</code></pre>\n </div>\n <div id=\"Full-Trace\" style=\"display:
|
134
130
|
none;\">\n <pre><code>vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.14.2/lib/action_dispatch/middleware/debug_exceptions.rb:21:in
|
135
131
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
@@ -165,7 +161,6 @@ http_interactions:
|
|
165
161
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/engine.rb:514:in
|
166
162
|
`call'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/application.rb:144:in
|
167
163
|
`call'\nvendor/bundle/ruby/2.1.0/gems/newrelic_rpm-3.14.2.312/lib/new_relic/agent/instrumentation/middleware_tracing.rb:96:in
|
168
|
-
`call'\nvendor/bundle/ruby/2.1.0/gems/rack-1.5.5/lib/rack/content_length.rb:14:in
|
169
164
|
`call'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:86:in
|
170
165
|
`block in pre_process'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
171
166
|
`catch'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/connection.rb:84:in
|
@@ -175,15 +170,11 @@ http_interactions:
|
|
175
170
|
`run_machine'\nvendor/bundle/ruby/2.1.0/gems/eventmachine-1.0.7/lib/eventmachine.rb:187:in
|
176
171
|
`run'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/backends/base.rb:73:in
|
177
172
|
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/server.rb:162:in
|
178
|
-
`start'\nvendor/bundle/ruby/2.1.0/gems/
|
179
|
-
`
|
180
|
-
`
|
181
|
-
`
|
182
|
-
|
183
|
-
`tap'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:76:in
|
184
|
-
`server'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands/commands_tasks.rb:40:in
|
185
|
-
`run_command!'\nvendor/bundle/ruby/2.1.0/gems/railties-4.1.14.2/lib/rails/commands.rb:17:in
|
186
|
-
`<top (required)>'\nbin/rails:4:in `require'\nbin/rails:4:in
|
173
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/controllers/controller.rb:87:in
|
174
|
+
`start'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:200:in
|
175
|
+
`run_command'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/lib/thin/runner.rb:156:in
|
176
|
+
`run!'\nvendor/bundle/ruby/2.1.0/gems/thin-1.6.3/bin/thin:6:in `<top
|
177
|
+
(required)>'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in `load'\nvendor/bundle/ruby/2.1.0/bin/thin:23:in
|
187
178
|
`<main>'</code></pre>\n </div>\n</div>\n\n\n <h2>\n Routes\n
|
188
179
|
\ </h2>\n\n <p>\n Routes match in priority from top to bottom\n
|
189
180
|
\ </p>\n\n \n<table id='route_table' class='route_table'>\n <thead>\n
|
@@ -2274,35 +2265,40 @@ http_interactions:
|
|
2274
2265
|
\ search_users<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2275
2266
|
\ GET\n </td>\n <td data-route-path='/users/search(.:format)' data-regexp='^\\/users\\/search(?:\\.([^\\/.?]+))?$'>\n
|
2276
2267
|
\ /users/search(.:format)\n </td>\n <td data-route-reqs='UserApp'>\n UserApp\n
|
2277
|
-
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='
|
2278
|
-
\
|
2279
|
-
\ <td data-route-verb='
|
2280
|
-
data-regexp='^\\/
|
2281
|
-
\
|
2282
|
-
\
|
2283
|
-
|
2284
|
-
|
2285
|
-
\
|
2286
|
-
\
|
2287
|
-
\
|
2288
|
-
|
2289
|
-
\ </td>\n <td data-route-
|
2290
|
-
|
2291
|
-
\ TslMetadatumApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2292
|
-
\ <td data-route-name='tsl_metadatum'>\n tsl_metadatum<span class='helper'>_path</span>\n
|
2293
|
-
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata/:id(.:format)'
|
2294
|
-
data-regexp='^\\/tsl_metadata\\/([^\\/.?]+)(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata/:id(.:format)\n
|
2268
|
+
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='send_trial_expiring_reminder'>\n
|
2269
|
+
\ send_trial_expiring_reminder<span class='helper'>_path</span>\n </td>\n
|
2270
|
+
\ <td data-route-verb='POST'>\n POST\n </td>\n <td data-route-path='/users/send_trial_expiring_reminder(.:format)'
|
2271
|
+
data-regexp='^\\/users\\/send_trial_expiring_reminder(?:\\.([^\\/.?]+))?$'>\n
|
2272
|
+
\ /users/send_trial_expiring_reminder(.:format)\n </td>\n <td data-route-reqs='UserApp'>\n
|
2273
|
+
\ UserApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td
|
2274
|
+
data-route-name='generate_firebase_token'>\n generate_firebase_token<span
|
2275
|
+
class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n GET\n
|
2276
|
+
\ </td>\n <td data-route-path='/generate_firebase_token(.:format)' data-regexp='^\\/generate_firebase_token(?:\\.([^\\/.?]+))?$'>\n
|
2277
|
+
\ /generate_firebase_token(.:format)\n </td>\n <td data-route-reqs='GenerateFirebaseTokenApp'>\n
|
2278
|
+
\ GenerateFirebaseTokenApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2279
|
+
\ <td data-route-name='tsl_metadata'>\n tsl_metadata<span class='helper'>_path</span>\n
|
2280
|
+
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata(.:format)'
|
2281
|
+
data-regexp='^\\/tsl_metadata(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata(.:format)\n
|
2295
2282
|
\ </td>\n <td data-route-reqs='TslMetadatumApp'>\n TslMetadatumApp\n </td>\n</tr>\n<tr
|
2296
|
-
class='route_row' data-helper='path'>\n <td data-route-name='
|
2297
|
-
\
|
2298
|
-
|
2299
|
-
|
2300
|
-
\
|
2301
|
-
|
2302
|
-
\
|
2303
|
-
data-regexp='^\\/
|
2304
|
-
\
|
2305
|
-
class='route_row' data-helper='path'>\n
|
2283
|
+
class='route_row' data-helper='path'>\n <td data-route-name='search_tsl_metadata'>\n
|
2284
|
+
\ search_tsl_metadata<span class='helper'>_path</span>\n </td>\n <td
|
2285
|
+
data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_metadata/search(.:format)'
|
2286
|
+
data-regexp='^\\/tsl_metadata\\/search(?:\\.([^\\/.?]+))?$'>\n /tsl_metadata/search(.:format)\n
|
2287
|
+
\ </td>\n <td data-route-reqs='TslMetadatumApp'>\n TslMetadatumApp\n </td>\n</tr>\n<tr
|
2288
|
+
class='route_row' data-helper='path'>\n <td data-route-name='tsl_metadatum'>\n
|
2289
|
+
\ tsl_metadatum<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2290
|
+
\ GET\n </td>\n <td data-route-path='/tsl_metadata/:id(.:format)' data-regexp='^\\/tsl_metadata\\/([^\\/.?]+)(?:\\.([^\\/.?]+))?$'>\n
|
2291
|
+
\ /tsl_metadata/:id(.:format)\n </td>\n <td data-route-reqs='TslMetadatumApp'>\n
|
2292
|
+
\ TslMetadatumApp\n </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n
|
2293
|
+
\ <td data-route-name='tsl_photos'>\n tsl_photos<span class='helper'>_path</span>\n
|
2294
|
+
\ </td>\n <td data-route-verb='GET'>\n GET\n </td>\n <td data-route-path='/tsl_photos(.:format)'
|
2295
|
+
data-regexp='^\\/tsl_photos(?:\\.([^\\/.?]+))?$'>\n /tsl_photos(.:format)\n
|
2296
|
+
\ </td>\n <td data-route-reqs='TslPhotoApp'>\n TslPhotoApp\n </td>\n</tr>\n<tr
|
2297
|
+
class='route_row' data-helper='path'>\n <td data-route-name='tsl_chats'>\n
|
2298
|
+
\ tsl_chats<span class='helper'>_path</span>\n </td>\n <td data-route-verb='GET'>\n
|
2299
|
+
\ GET\n </td>\n <td data-route-path='/tsl_chats(.:format)' data-regexp='^\\/tsl_chats(?:\\.([^\\/.?]+))?$'>\n
|
2300
|
+
\ /tsl_chats(.:format)\n </td>\n <td data-route-reqs='TslChatApp'>\n TslChatApp\n
|
2301
|
+
\ </td>\n</tr>\n<tr class='route_row' data-helper='path'>\n <td data-route-name='send_tsl_chat_push'>\n
|
2306
2302
|
\ send_tsl_chat_push<span class='helper'>_path</span>\n </td>\n <td
|
2307
2303
|
data-route-verb='POST'>\n POST\n </td>\n <td data-route-path='/tsl_chats/send_push(.:format)'
|
2308
2304
|
data-regexp='^\\/tsl_chats\\/send_push(?:\\.([^\\/.?]+))?$'>\n /tsl_chats/send_push(.:format)\n
|
@@ -2399,6 +2395,6 @@ http_interactions:
|
|
2399
2395
|
+ noMatchText;\n }\n }\n }\n\n setupMatchPaths();\n setupRouteToggleHelperLinks();\n</script>\n\n</div>\n\n\n</body>\n</html>\n"
|
2400
2396
|
http_version: '1.1'
|
2401
2397
|
adapter_metadata:
|
2402
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
2403
|
-
recorded_at:
|
2398
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=b5b56e97-94bb-46b9-ba52-488440a89240&hmac_timestamp=1458775794
|
2399
|
+
recorded_at: Wed, 23 Mar 2016 23:29:55 GMT
|
2404
2400
|
recorded_with: VCR 2.9.3
|
@@ -2,15 +2,15 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
5
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=6a716d6a-35cf-4d92-a206-fd9b1ea19232&hmac_timestamp=1458775796
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.9.
|
11
|
+
- Faraday v0.9.2
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- 813a5477bf37b0a92a58fdc0a34565133e18e610c48cbaa99a3b7ed1455371ab
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 200
|
@@ -23,20 +23,20 @@ http_interactions:
|
|
23
23
|
X-Content-Type-Options:
|
24
24
|
- nosniff
|
25
25
|
ETag:
|
26
|
-
- '"
|
26
|
+
- '"0ca82baaf110be3726eedbbd31b79152"'
|
27
27
|
Cache-Control:
|
28
28
|
- max-age=0, private, must-revalidate
|
29
29
|
X-Request-Id:
|
30
|
-
-
|
30
|
+
- 83ba76a9-4a86-4fde-854d-5476b6a7291f
|
31
31
|
X-Runtime:
|
32
|
-
- '0.
|
32
|
+
- '0.045046'
|
33
33
|
Connection:
|
34
34
|
- keep-alive
|
35
35
|
Server:
|
36
36
|
- thin
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
39
|
+
string: '{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
40
40
|
a heterogeneous collection of the specified types for a specified team or
|
41
41
|
teams. Additional filters can be passed into requested types by passing them
|
42
42
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -64,19 +64,19 @@ http_interactions:
|
|
64
64
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
65
65
|
http_version: '1.1'
|
66
66
|
adapter_metadata:
|
67
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
68
|
-
recorded_at:
|
67
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=6a716d6a-35cf-4d92-a206-fd9b1ea19232&hmac_timestamp=1458775796
|
68
|
+
recorded_at: Wed, 23 Mar 2016 23:29:56 GMT
|
69
69
|
- request:
|
70
70
|
method: get
|
71
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
71
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=32e2932b-1195-46c9-996c-d8db1548a07b&hmac_timestamp=1458775796
|
72
72
|
body:
|
73
73
|
encoding: US-ASCII
|
74
74
|
string: ''
|
75
75
|
headers:
|
76
76
|
User-Agent:
|
77
|
-
- Faraday v0.9.
|
77
|
+
- Faraday v0.9.2
|
78
78
|
X-Teamsnap-Hmac:
|
79
|
-
-
|
79
|
+
- 11f6b19999c01d82f793dc6dae928694a702aeff839f9973d406a00d0a92b4e7
|
80
80
|
response:
|
81
81
|
status:
|
82
82
|
code: 200
|
@@ -89,20 +89,20 @@ http_interactions:
|
|
89
89
|
X-Content-Type-Options:
|
90
90
|
- nosniff
|
91
91
|
ETag:
|
92
|
-
- '"
|
92
|
+
- '"0ca82baaf110be3726eedbbd31b79152"'
|
93
93
|
Cache-Control:
|
94
94
|
- max-age=0, private, must-revalidate
|
95
95
|
X-Request-Id:
|
96
|
-
-
|
96
|
+
- 95839f3d-a470-4d9e-b836-23c90ae95668
|
97
97
|
X-Runtime:
|
98
|
-
- '0.
|
98
|
+
- '0.064560'
|
99
99
|
Connection:
|
100
100
|
- keep-alive
|
101
101
|
Server:
|
102
102
|
- thin
|
103
103
|
body:
|
104
104
|
encoding: UTF-8
|
105
|
-
string: '{"collection":{"version":"3.
|
105
|
+
string: '{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
106
106
|
a heterogeneous collection of the specified types for a specified team or
|
107
107
|
teams. Additional filters can be passed into requested types by passing them
|
108
108
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -130,19 +130,19 @@ http_interactions:
|
|
130
130
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
131
131
|
http_version: '1.1'
|
132
132
|
adapter_metadata:
|
133
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
134
|
-
recorded_at:
|
133
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=32e2932b-1195-46c9-996c-d8db1548a07b&hmac_timestamp=1458775796
|
134
|
+
recorded_at: Wed, 23 Mar 2016 23:29:56 GMT
|
135
135
|
- request:
|
136
136
|
method: get
|
137
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
137
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=eed32101-941e-4ecc-9e88-7cad300255f3&hmac_timestamp=1458775796
|
138
138
|
body:
|
139
139
|
encoding: US-ASCII
|
140
140
|
string: ''
|
141
141
|
headers:
|
142
142
|
User-Agent:
|
143
|
-
- Faraday v0.9.
|
143
|
+
- Faraday v0.9.2
|
144
144
|
X-Teamsnap-Hmac:
|
145
|
-
-
|
145
|
+
- 12af6196301fd29e4223b6d699d53f4940b351e34f0d1094faf615a264cb771b
|
146
146
|
response:
|
147
147
|
status:
|
148
148
|
code: 200
|
@@ -155,20 +155,20 @@ http_interactions:
|
|
155
155
|
X-Content-Type-Options:
|
156
156
|
- nosniff
|
157
157
|
ETag:
|
158
|
-
- '"
|
158
|
+
- '"0ca82baaf110be3726eedbbd31b79152"'
|
159
159
|
Cache-Control:
|
160
160
|
- max-age=0, private, must-revalidate
|
161
161
|
X-Request-Id:
|
162
|
-
-
|
162
|
+
- 018ace43-56c6-452f-8851-eafddba885fb
|
163
163
|
X-Runtime:
|
164
|
-
- '0.
|
164
|
+
- '0.070894'
|
165
165
|
Connection:
|
166
166
|
- keep-alive
|
167
167
|
Server:
|
168
168
|
- thin
|
169
169
|
body:
|
170
170
|
encoding: UTF-8
|
171
|
-
string: '{"collection":{"version":"3.
|
171
|
+
string: '{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
172
172
|
a heterogeneous collection of the specified types for a specified team or
|
173
173
|
teams. Additional filters can be passed into requested types by passing them
|
174
174
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -196,19 +196,19 @@ http_interactions:
|
|
196
196
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
197
197
|
http_version: '1.1'
|
198
198
|
adapter_metadata:
|
199
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
200
|
-
recorded_at:
|
199
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=eed32101-941e-4ecc-9e88-7cad300255f3&hmac_timestamp=1458775796
|
200
|
+
recorded_at: Wed, 23 Mar 2016 23:29:56 GMT
|
201
201
|
- request:
|
202
202
|
method: get
|
203
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
203
|
+
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=8801d22a-60fb-4e21-b813-a871753817f1&hmac_timestamp=1458775796
|
204
204
|
body:
|
205
205
|
encoding: US-ASCII
|
206
206
|
string: ''
|
207
207
|
headers:
|
208
208
|
User-Agent:
|
209
|
-
- Faraday v0.9.
|
209
|
+
- Faraday v0.9.2
|
210
210
|
X-Teamsnap-Hmac:
|
211
|
-
-
|
211
|
+
- cb993d91758e0ba47b7a73511c5782840aa7ca5321059e3f80e738e8bc145c93
|
212
212
|
response:
|
213
213
|
status:
|
214
214
|
code: 200
|
@@ -221,20 +221,20 @@ http_interactions:
|
|
221
221
|
X-Content-Type-Options:
|
222
222
|
- nosniff
|
223
223
|
ETag:
|
224
|
-
- '"
|
224
|
+
- '"0ca82baaf110be3726eedbbd31b79152"'
|
225
225
|
Cache-Control:
|
226
226
|
- max-age=0, private, must-revalidate
|
227
227
|
X-Request-Id:
|
228
|
-
-
|
228
|
+
- 5a718ac5-6574-49f3-8d34-c7ff9193abcc
|
229
229
|
X-Runtime:
|
230
|
-
- '0.
|
230
|
+
- '0.048195'
|
231
231
|
Connection:
|
232
232
|
- keep-alive
|
233
233
|
Server:
|
234
234
|
- thin
|
235
235
|
body:
|
236
236
|
encoding: UTF-8
|
237
|
-
string: '{"collection":{"version":"3.
|
237
|
+
string: '{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
238
238
|
a heterogeneous collection of the specified types for a specified team or
|
239
239
|
teams. Additional filters can be passed into requested types by passing them
|
240
240
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -262,6 +262,6 @@ http_interactions:
|
|
262
262
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
263
263
|
http_version: '1.1'
|
264
264
|
adapter_metadata:
|
265
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
266
|
-
recorded_at:
|
265
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=8801d22a-60fb-4e21-b813-a871753817f1&hmac_timestamp=1458775796
|
266
|
+
recorded_at: Wed, 23 Mar 2016 23:29:56 GMT
|
267
267
|
recorded_with: VCR 2.9.3
|