teamsnap_rb 1.3.2 → 1.3.3
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/CHANGELOG.md +7 -1
- data/lib/teamsnap.rb +58 -18
- data/lib/teamsnap/version.rb +1 -1
- data/spec/cassettes/apiv3-init.yml +312 -2476
- data/spec/cassettes/teamsnap_rb/adds_find_if_search_is_available.yml +24 -15
- data/spec/cassettes/teamsnap_rb/adds_href_to_items.yml +20 -20
- data/spec/cassettes/teamsnap_rb/can_follow_plural_links.yml +66 -39
- data/spec/cassettes/teamsnap_rb/can_follow_singular_links.yml +43 -28
- data/spec/cassettes/teamsnap_rb/can_handle_an_empty_bulk_load.yml +30 -14
- data/spec/cassettes/teamsnap_rb/can_handle_an_error_with_bulk_load.yml +16 -10
- data/spec/cassettes/teamsnap_rb/can_handle_errors_generated_by_command.yml +17 -17
- data/spec/cassettes/teamsnap_rb/can_handle_links_with_no_data.yml +38 -26
- data/spec/cassettes/teamsnap_rb/can_use_bulk_load.yml +40 -24
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands.yml +20 -14
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands_with_multiple_params.yml +341 -2814
- data/spec/cassettes/teamsnap_rb/handles_fetching_data_via_queries.yml +24 -15
- data/spec/cassettes/teamsnap_rb/handles_queries_with_no_data.yml +30 -15
- data/spec/cassettes/teamsnap_rb/raises_an_exception_if_find_returns_nothing.yml +30 -15
- 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 +49 -46
- 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 +41 -26
- 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 +43 -28
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +48 -30
- data/spec/spec_helper.rb +3 -0
- data/spec/teamsnap_spec.rb +1 -68
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0239f7246eecc56c771e8a38313131be8be7ee5
|
4
|
+
data.tar.gz: 58a567e81b97aa5057131841d5330a3b09106392
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05a720ecb0301f7b8531e6dc7649b2d94ba405baa322bb12af48798fb921462cc3ccd26168a1f5a16be6c9b2d719198ca0decdfc4335fe3863a4f93833fa9aec
|
7
|
+
data.tar.gz: d3f5ff84adf69cfe375efc974514af485c4515c9cf552df95e73090c4abda44e7378f42aa3a7014809c0460f6ad160b9b7600c634b19549291a6475e505aeed8
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
MASTER
|
2
2
|
------
|
3
3
|
|
4
|
-
-
|
4
|
+
-
|
5
5
|
|
6
6
|
v1.1.0
|
7
7
|
------
|
8
8
|
|
9
9
|
- Fixed a namespacing issue that would try and user classes already defined by
|
10
10
|
the user if they shared a name with TeamSnap classes.
|
11
|
+
|
12
|
+
v1.3.3
|
13
|
+
------
|
14
|
+
|
15
|
+
- Have the ability to search for a /schemas endpoint and create the collections
|
16
|
+
off of the schema endpoint instead of hitting each endpoint individually
|
data/lib/teamsnap.rb
CHANGED
@@ -32,7 +32,7 @@ Inflecto.inflections do |inflect|
|
|
32
32
|
end
|
33
33
|
|
34
34
|
module TeamSnap
|
35
|
-
EXCLUDED_RELS = %w(me apiv2_root root self dude sweet random xyzzy)
|
35
|
+
EXCLUDED_RELS = %w(me apiv2_root root self dude sweet random xyzzy schemas)
|
36
36
|
DEFAULT_URL = "https://apiv3.teamsnap.com"
|
37
37
|
Error = Class.new(StandardError)
|
38
38
|
NotFound = Class.new(TeamSnap::Error)
|
@@ -95,13 +95,14 @@ module TeamSnap
|
|
95
95
|
end
|
96
96
|
|
97
97
|
class << self
|
98
|
-
def collection(href, resp)
|
98
|
+
def collection(href, resp, parsed_collection)
|
99
99
|
Module.new do
|
100
100
|
define_singleton_method(:included) do |descendant|
|
101
101
|
descendant.send(:include, TeamSnap::Item)
|
102
102
|
descendant.extend(TeamSnap::Collection)
|
103
103
|
descendant.instance_variable_set(:@href, href)
|
104
104
|
descendant.instance_variable_set(:@resp, resp)
|
105
|
+
descendant.instance_variable_set(:@parsed_collection, parsed_collection)
|
105
106
|
end
|
106
107
|
end
|
107
108
|
end
|
@@ -137,13 +138,40 @@ module TeamSnap
|
|
137
138
|
collection = TeamSnap.run_init(:get, "/", {})
|
138
139
|
|
139
140
|
classes = []
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
141
|
+
|
142
|
+
schema = collection
|
143
|
+
.fetch(:links) { [] }
|
144
|
+
.find { |link| link[:rel] == "schemas" } || {}
|
145
|
+
|
146
|
+
if schema[:href]
|
147
|
+
href_to_rel = collection
|
148
|
+
.fetch(:links) { [] }
|
149
|
+
.reject { |link| EXCLUDED_RELS.include?(link[:rel]) }
|
150
|
+
.map { |link| [link[:href], link[:rel]]}
|
151
|
+
.to_h
|
152
|
+
|
153
|
+
resp = client.get(schema[:href])
|
154
|
+
if resp.status == 200
|
155
|
+
collections = Oj.load(resp.body)
|
156
|
+
classes = collections.map { |collection|
|
157
|
+
col = collection.fetch(:collection) { {} }
|
158
|
+
if rel = href_to_rel[col[:href]]
|
159
|
+
create_collection_class(rel, col[:href], nil, col)
|
160
|
+
end
|
161
|
+
}
|
144
162
|
.compact
|
163
|
+
else
|
164
|
+
error_message = TeamSnap.parse_error(resp)
|
165
|
+
raise TeamSnap::Error.new(error_message)
|
166
|
+
end
|
167
|
+
else
|
168
|
+
client.in_parallel do
|
169
|
+
classes = collection
|
170
|
+
.fetch(:links) { [] }
|
171
|
+
.map { |link| classify_rel(link) }
|
172
|
+
.compact
|
173
|
+
end
|
145
174
|
end
|
146
|
-
|
147
175
|
classes.each { |cls| cls.parse_collection }
|
148
176
|
|
149
177
|
apply_endpoints(self, collection) && true
|
@@ -238,11 +266,15 @@ module TeamSnap
|
|
238
266
|
|
239
267
|
rel = link.fetch(:rel)
|
240
268
|
href = link.fetch(:href)
|
241
|
-
name = Inflecto.classify(rel)
|
242
269
|
resp = client.get(href)
|
243
270
|
|
271
|
+
create_collection_class(rel, href, resp, nil)
|
272
|
+
end
|
273
|
+
|
274
|
+
def create_collection_class(rel, href, resp, collection)
|
275
|
+
name = Inflecto.classify(rel)
|
244
276
|
TeamSnap.const_set(
|
245
|
-
name, Class.new { include TeamSnap.collection(href, resp) }
|
277
|
+
name, Class.new { include TeamSnap.collection(href, resp, collection) }
|
246
278
|
) unless TeamSnap.const_defined?(name, false)
|
247
279
|
end
|
248
280
|
|
@@ -340,17 +372,25 @@ module TeamSnap
|
|
340
372
|
self.instance_variable_get(:@resp)
|
341
373
|
end
|
342
374
|
|
343
|
-
def
|
344
|
-
|
345
|
-
|
346
|
-
.fetch(:collection)
|
375
|
+
def parsed_collection
|
376
|
+
self.instance_variable_get(:@parsed_collection)
|
377
|
+
end
|
347
378
|
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
379
|
+
def parse_collection
|
380
|
+
if resp
|
381
|
+
if resp.status == 200
|
382
|
+
collection = Oj.load(resp.body)
|
383
|
+
.fetch(:collection) { [] }
|
384
|
+
else
|
385
|
+
error_message = TeamSnap.parse_error(resp)
|
386
|
+
raise TeamSnap::Error.new(error_message)
|
387
|
+
end
|
388
|
+
elsif parsed_collection
|
389
|
+
collection = parsed_collection
|
353
390
|
end
|
391
|
+
|
392
|
+
TeamSnap.apply_endpoints(self, collection)
|
393
|
+
enable_find if respond_to?(:search)
|
354
394
|
end
|
355
395
|
|
356
396
|
private
|
data/lib/teamsnap/version.rb
CHANGED
@@ -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=d31238ef-c4a2-4122-9677-64027510d3ac&hmac_timestamp=1444788588
|
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
|
+
- ae77066a1ea42a7ef49abb81e5a656392241b5b70a918112472959f3d30ed15a
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 200
|
@@ -19,2520 +19,356 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/vnd.collection+json
|
21
21
|
Content-Length:
|
22
|
-
- '
|
23
|
-
X-Content-Type-Options:
|
24
|
-
- nosniff
|
25
|
-
ETag:
|
26
|
-
- '"79b22591494095122f4557768c976d19"'
|
27
|
-
Cache-Control:
|
28
|
-
- max-age=0, private, must-revalidate
|
29
|
-
X-Request-Id:
|
30
|
-
- c0213f4c-1e4e-4946-9dd6-9a0e6a529c8e
|
31
|
-
X-Runtime:
|
32
|
-
- '0.014954'
|
33
|
-
Connection:
|
34
|
-
- keep-alive
|
35
|
-
Server:
|
36
|
-
- thin
|
37
|
-
body:
|
38
|
-
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"division_locations","href":"http://localhost:3000/division_members"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"events","href":"http://localhost:3000/events"},{"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":"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_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":"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":"public_features","href":"http://localhost:3000/public_features"},{"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_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"referrals","href":"http://localhost:3000/referrals"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"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":"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_photos","href":"http://localhost:3000/tsl_photos"},{"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","data":[{"name":"team_id","value":null},{"name":"types","value":null}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]}]}}'
|
40
|
-
http_version: '1.1'
|
41
|
-
adapter_metadata:
|
42
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=a4216bee-4875-4997-a8c5-6b79189db9a2&hmac_timestamp=1432825400
|
43
|
-
recorded_at: Thu, 28 May 2015 15:03:20 GMT
|
44
|
-
- request:
|
45
|
-
method: get
|
46
|
-
uri: http://localhost:3000/assignments?hmac_client_id=classic&hmac_nonce=a3a33e9d-09d2-4e04-b2b7-8002a0fda350&hmac_timestamp=1432825400
|
47
|
-
body:
|
48
|
-
encoding: US-ASCII
|
49
|
-
string: ''
|
50
|
-
headers:
|
51
|
-
User-Agent:
|
52
|
-
- Faraday v0.9.1
|
53
|
-
X-Teamsnap-Hmac:
|
54
|
-
- 9b52c7cf28b51e72c30801820e48984918064bbb5583f3ba23fb31e54a04fe27
|
55
|
-
response:
|
56
|
-
status:
|
57
|
-
code: 200
|
58
|
-
message: OK
|
59
|
-
headers:
|
60
|
-
Content-Type:
|
61
|
-
- application/vnd.collection+json
|
62
|
-
Content-Length:
|
63
|
-
- '771'
|
64
|
-
X-Content-Type-Options:
|
65
|
-
- nosniff
|
66
|
-
ETag:
|
67
|
-
- '"34fa2dd7ab9f1eb76bd38a7d11e8b841"'
|
68
|
-
Cache-Control:
|
69
|
-
- max-age=0, private, must-revalidate
|
70
|
-
X-Request-Id:
|
71
|
-
- 998c1358-b143-449d-ad9c-1c2396ba54ef
|
72
|
-
X-Runtime:
|
73
|
-
- '0.011904'
|
74
|
-
Connection:
|
75
|
-
- keep-alive
|
76
|
-
Server:
|
77
|
-
- thin
|
78
|
-
body:
|
79
|
-
encoding: UTF-8
|
80
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments"}],"queries":[{"rel":"search","href":"http://localhost:3000/assignments/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}]}}'
|
81
|
-
http_version: '1.1'
|
82
|
-
adapter_metadata:
|
83
|
-
effective_url: http://localhost:3000/assignments?hmac_client_id=classic&hmac_nonce=a3a33e9d-09d2-4e04-b2b7-8002a0fda350&hmac_timestamp=1432825400
|
84
|
-
recorded_at: Thu, 28 May 2015 15:03:20 GMT
|
85
|
-
- request:
|
86
|
-
method: get
|
87
|
-
uri: http://localhost:3000/availabilities?hmac_client_id=classic&hmac_nonce=d7da8a7f-96aa-4f0c-85e9-24d6df7987af&hmac_timestamp=1432825400
|
88
|
-
body:
|
89
|
-
encoding: US-ASCII
|
90
|
-
string: ''
|
91
|
-
headers:
|
92
|
-
User-Agent:
|
93
|
-
- Faraday v0.9.1
|
94
|
-
X-Teamsnap-Hmac:
|
95
|
-
- 7278c01c03ded1a15a8384f921a533423ce51f3eb32858c979ca487bd64aa5e0
|
96
|
-
response:
|
97
|
-
status:
|
98
|
-
code: 200
|
99
|
-
message: OK
|
100
|
-
headers:
|
101
|
-
Content-Type:
|
102
|
-
- application/vnd.collection+json
|
103
|
-
Content-Length:
|
104
|
-
- '1275'
|
105
|
-
X-Content-Type-Options:
|
106
|
-
- nosniff
|
107
|
-
ETag:
|
108
|
-
- '"afa1786398ad98e3a33733f5c023b5af"'
|
109
|
-
Cache-Control:
|
110
|
-
- max-age=0, private, must-revalidate
|
111
|
-
X-Request-Id:
|
112
|
-
- 8a2f7fce-6746-455b-a5b2-5630247e0a04
|
113
|
-
X-Runtime:
|
114
|
-
- '0.009340'
|
115
|
-
Connection:
|
116
|
-
- keep-alive
|
117
|
-
Server:
|
118
|
-
- thin
|
119
|
-
body:
|
120
|
-
encoding: UTF-8
|
121
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/availabilities","template":{"data":[{"name":"status_code","value":null},{"name":"notes","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"notes_author_member_id","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"notes_author_member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/availabilities"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
|
122
|
-
all future unset availabilities to specified status_code for the specified
|
123
|
-
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}}'
|
124
|
-
http_version: '1.1'
|
125
|
-
adapter_metadata:
|
126
|
-
effective_url: http://localhost:3000/availabilities?hmac_client_id=classic&hmac_nonce=d7da8a7f-96aa-4f0c-85e9-24d6df7987af&hmac_timestamp=1432825400
|
127
|
-
recorded_at: Thu, 28 May 2015 15:03:20 GMT
|
128
|
-
- request:
|
129
|
-
method: get
|
130
|
-
uri: http://localhost:3000/broadcast_emails?hmac_client_id=classic&hmac_nonce=40b1365d-6e60-41a4-881c-af9ac16daa50&hmac_timestamp=1432825400
|
131
|
-
body:
|
132
|
-
encoding: US-ASCII
|
133
|
-
string: ''
|
134
|
-
headers:
|
135
|
-
User-Agent:
|
136
|
-
- Faraday v0.9.1
|
137
|
-
X-Teamsnap-Hmac:
|
138
|
-
- a65caad6feb27e06601a0e669d355d12c1bf214a0620f95031af34018143b662
|
139
|
-
response:
|
140
|
-
status:
|
141
|
-
code: 200
|
142
|
-
message: OK
|
143
|
-
headers:
|
144
|
-
Content-Type:
|
145
|
-
- application/vnd.collection+json
|
146
|
-
Content-Length:
|
147
|
-
- '1120'
|
148
|
-
X-Content-Type-Options:
|
149
|
-
- nosniff
|
150
|
-
ETag:
|
151
|
-
- '"36af738fd46c642e9fe71a844faf920d"'
|
152
|
-
Cache-Control:
|
153
|
-
- max-age=0, private, must-revalidate
|
154
|
-
X-Request-Id:
|
155
|
-
- 716b2c7b-b608-4254-8a97-dba4649e111a
|
156
|
-
X-Runtime:
|
157
|
-
- '0.010161'
|
158
|
-
Connection:
|
159
|
-
- keep-alive
|
160
|
-
Server:
|
161
|
-
- thin
|
162
|
-
body:
|
163
|
-
encoding: UTF-8
|
164
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/broadcast_emails","template":{"data":[{"name":"attachments","value":null},{"name":"body","value":null},{"name":"is_draft","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_emails"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"upload_attachment","href":"http://localhost:3000/broadcast_emails/upload_attachment","data":[{"name":"broadcast_email_id","value":null},{"name":"file","value":null}]},{"rel":"remove_attachment","href":"http://localhost:3000/broadcast_emails/remove_attachment","data":[{"name":"broadcast_email_id","value":null},{"name":"filename","value":null}]}]}}'
|
165
|
-
http_version: '1.1'
|
166
|
-
adapter_metadata:
|
167
|
-
effective_url: http://localhost:3000/broadcast_emails?hmac_client_id=classic&hmac_nonce=40b1365d-6e60-41a4-881c-af9ac16daa50&hmac_timestamp=1432825400
|
168
|
-
recorded_at: Thu, 28 May 2015 15:03:20 GMT
|
169
|
-
- request:
|
170
|
-
method: get
|
171
|
-
uri: http://localhost:3000/broadcast_smses?hmac_client_id=classic&hmac_nonce=ba792836-2c33-464d-9367-94f2a3af185b&hmac_timestamp=1432825400
|
172
|
-
body:
|
173
|
-
encoding: US-ASCII
|
174
|
-
string: ''
|
175
|
-
headers:
|
176
|
-
User-Agent:
|
177
|
-
- Faraday v0.9.1
|
178
|
-
X-Teamsnap-Hmac:
|
179
|
-
- a6ffa9b715271d6280bba5d20fd377158af42fc4753a1d1123401e643dc8e115
|
180
|
-
response:
|
181
|
-
status:
|
182
|
-
code: 200
|
183
|
-
message: OK
|
184
|
-
headers:
|
185
|
-
Content-Type:
|
186
|
-
- application/vnd.collection+json
|
187
|
-
Content-Length:
|
188
|
-
- '649'
|
189
|
-
X-Content-Type-Options:
|
190
|
-
- nosniff
|
191
|
-
ETag:
|
192
|
-
- '"37142729ff3ee6f1777e4c652d7d1cea"'
|
193
|
-
Cache-Control:
|
194
|
-
- max-age=0, private, must-revalidate
|
195
|
-
X-Request-Id:
|
196
|
-
- 64c09832-da27-4500-9fd3-296f649a6f13
|
197
|
-
X-Runtime:
|
198
|
-
- '0.010223'
|
199
|
-
Connection:
|
200
|
-
- keep-alive
|
201
|
-
Server:
|
202
|
-
- thin
|
203
|
-
body:
|
204
|
-
encoding: UTF-8
|
205
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/broadcast_smses","template":{"data":[{"name":"body","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_smses"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_smses/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}}'
|
206
|
-
http_version: '1.1'
|
207
|
-
adapter_metadata:
|
208
|
-
effective_url: http://localhost:3000/broadcast_smses?hmac_client_id=classic&hmac_nonce=ba792836-2c33-464d-9367-94f2a3af185b&hmac_timestamp=1432825400
|
209
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
210
|
-
- request:
|
211
|
-
method: get
|
212
|
-
uri: http://localhost:3000/contact_email_addresses?hmac_client_id=classic&hmac_nonce=bd790b17-8dc2-40bd-b360-f7227dfa9764&hmac_timestamp=1432825400
|
213
|
-
body:
|
214
|
-
encoding: US-ASCII
|
215
|
-
string: ''
|
216
|
-
headers:
|
217
|
-
User-Agent:
|
218
|
-
- Faraday v0.9.1
|
219
|
-
X-Teamsnap-Hmac:
|
220
|
-
- c42f0b7589b9b9619b11905e52721e1d11ef4fe4eccd722eb8cba25e38b1c08b
|
221
|
-
response:
|
222
|
-
status:
|
223
|
-
code: 200
|
224
|
-
message: OK
|
225
|
-
headers:
|
226
|
-
Content-Type:
|
227
|
-
- application/vnd.collection+json
|
228
|
-
Content-Length:
|
229
|
-
- '773'
|
230
|
-
X-Content-Type-Options:
|
231
|
-
- nosniff
|
232
|
-
ETag:
|
233
|
-
- '"2b26dfbf8bc5b36f450673da031e9694"'
|
234
|
-
Cache-Control:
|
235
|
-
- max-age=0, private, must-revalidate
|
236
|
-
X-Request-Id:
|
237
|
-
- 44947cc2-71b0-4bf8-a177-4dcf28324b52
|
238
|
-
X-Runtime:
|
239
|
-
- '0.011219'
|
240
|
-
Connection:
|
241
|
-
- keep-alive
|
242
|
-
Server:
|
243
|
-
- thin
|
244
|
-
body:
|
245
|
-
encoding: UTF-8
|
246
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
247
|
-
http_version: '1.1'
|
248
|
-
adapter_metadata:
|
249
|
-
effective_url: http://localhost:3000/contact_email_addresses?hmac_client_id=classic&hmac_nonce=bd790b17-8dc2-40bd-b360-f7227dfa9764&hmac_timestamp=1432825400
|
250
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
251
|
-
- request:
|
252
|
-
method: get
|
253
|
-
uri: http://localhost:3000/contact_phone_numbers?hmac_client_id=classic&hmac_nonce=7ec8e130-72c0-4a39-8bb4-2804ff90b6f4&hmac_timestamp=1432825400
|
254
|
-
body:
|
255
|
-
encoding: US-ASCII
|
256
|
-
string: ''
|
257
|
-
headers:
|
258
|
-
User-Agent:
|
259
|
-
- Faraday v0.9.1
|
260
|
-
X-Teamsnap-Hmac:
|
261
|
-
- c2ea77519587ce60c3c8d5f5f99f7149f1f84dd0076a539e379a4cf6567c96cb
|
262
|
-
response:
|
263
|
-
status:
|
264
|
-
code: 200
|
265
|
-
message: OK
|
266
|
-
headers:
|
267
|
-
Content-Type:
|
268
|
-
- application/vnd.collection+json
|
269
|
-
Content-Length:
|
270
|
-
- '904'
|
271
|
-
X-Content-Type-Options:
|
272
|
-
- nosniff
|
273
|
-
ETag:
|
274
|
-
- '"51cf13b4fbe40989bf4b74498c2b80b7"'
|
275
|
-
Cache-Control:
|
276
|
-
- max-age=0, private, must-revalidate
|
277
|
-
X-Request-Id:
|
278
|
-
- ad416ef5-3afb-49e6-90f8-e008a71507a1
|
279
|
-
X-Runtime:
|
280
|
-
- '0.010151'
|
281
|
-
Connection:
|
282
|
-
- keep-alive
|
283
|
-
Server:
|
284
|
-
- thin
|
285
|
-
body:
|
286
|
-
encoding: UTF-8
|
287
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null}]}]}}'
|
288
|
-
http_version: '1.1'
|
289
|
-
adapter_metadata:
|
290
|
-
effective_url: http://localhost:3000/contact_phone_numbers?hmac_client_id=classic&hmac_nonce=7ec8e130-72c0-4a39-8bb4-2804ff90b6f4&hmac_timestamp=1432825400
|
291
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
292
|
-
- request:
|
293
|
-
method: get
|
294
|
-
uri: http://localhost:3000/contacts?hmac_client_id=classic&hmac_nonce=689e5402-db7d-47a5-9e62-08a887b882fa&hmac_timestamp=1432825400
|
295
|
-
body:
|
296
|
-
encoding: US-ASCII
|
297
|
-
string: ''
|
298
|
-
headers:
|
299
|
-
User-Agent:
|
300
|
-
- Faraday v0.9.1
|
301
|
-
X-Teamsnap-Hmac:
|
302
|
-
- 4d9727d402a25f5eeaa323af5caba005dbf555267da7b148864282ba329d3f6d
|
303
|
-
response:
|
304
|
-
status:
|
305
|
-
code: 200
|
306
|
-
message: OK
|
307
|
-
headers:
|
308
|
-
Content-Type:
|
309
|
-
- application/vnd.collection+json
|
310
|
-
Content-Length:
|
311
|
-
- '1166'
|
312
|
-
X-Content-Type-Options:
|
313
|
-
- nosniff
|
314
|
-
ETag:
|
315
|
-
- '"da9fc1a56709228198e64f1f9df31a73"'
|
316
|
-
Cache-Control:
|
317
|
-
- max-age=0, private, must-revalidate
|
318
|
-
X-Request-Id:
|
319
|
-
- 7430ea40-2bfc-40d0-84b8-7aa1aa3eca99
|
320
|
-
X-Runtime:
|
321
|
-
- '0.012118'
|
322
|
-
Connection:
|
323
|
-
- keep-alive
|
324
|
-
Server:
|
325
|
-
- thin
|
326
|
-
body:
|
327
|
-
encoding: UTF-8
|
328
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/contacts","template":{"data":[{"name":"label","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"address_country","value":null},{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"hide_address","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}}'
|
329
|
-
http_version: '1.1'
|
330
|
-
adapter_metadata:
|
331
|
-
effective_url: http://localhost:3000/contacts?hmac_client_id=classic&hmac_nonce=689e5402-db7d-47a5-9e62-08a887b882fa&hmac_timestamp=1432825400
|
332
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
333
|
-
- request:
|
334
|
-
method: get
|
335
|
-
uri: http://localhost:3000/custom_data?hmac_client_id=classic&hmac_nonce=49fee324-a893-4fbc-9c4c-3c2c255fbf30&hmac_timestamp=1432825400
|
336
|
-
body:
|
337
|
-
encoding: US-ASCII
|
338
|
-
string: ''
|
339
|
-
headers:
|
340
|
-
User-Agent:
|
341
|
-
- Faraday v0.9.1
|
342
|
-
X-Teamsnap-Hmac:
|
343
|
-
- 580eda89150a1dfc34ea073ee4b08a0da2d8562f695fe2bf031275465deeaa90
|
344
|
-
response:
|
345
|
-
status:
|
346
|
-
code: 200
|
347
|
-
message: OK
|
348
|
-
headers:
|
349
|
-
Content-Type:
|
350
|
-
- application/vnd.collection+json
|
351
|
-
Content-Length:
|
352
|
-
- '751'
|
353
|
-
X-Content-Type-Options:
|
354
|
-
- nosniff
|
355
|
-
ETag:
|
356
|
-
- '"323626ee87a3c572528714f3ed48b561"'
|
357
|
-
Cache-Control:
|
358
|
-
- max-age=0, private, must-revalidate
|
359
|
-
X-Request-Id:
|
360
|
-
- 78279d98-dd19-4958-9579-3c0b128b9077
|
361
|
-
X-Runtime:
|
362
|
-
- '0.011130'
|
363
|
-
Connection:
|
364
|
-
- keep-alive
|
365
|
-
Server:
|
366
|
-
- thin
|
367
|
-
body:
|
368
|
-
encoding: UTF-8
|
369
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"custom_field","href":"http://localhost:3000/custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"custom_field_id","value":null}]}]}}'
|
370
|
-
http_version: '1.1'
|
371
|
-
adapter_metadata:
|
372
|
-
effective_url: http://localhost:3000/custom_data?hmac_client_id=classic&hmac_nonce=49fee324-a893-4fbc-9c4c-3c2c255fbf30&hmac_timestamp=1432825400
|
373
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
374
|
-
- request:
|
375
|
-
method: get
|
376
|
-
uri: http://localhost:3000/custom_fields?hmac_client_id=classic&hmac_nonce=23240b8c-98b7-4e4b-aff0-17332462592f&hmac_timestamp=1432825400
|
377
|
-
body:
|
378
|
-
encoding: US-ASCII
|
379
|
-
string: ''
|
380
|
-
headers:
|
381
|
-
User-Agent:
|
382
|
-
- Faraday v0.9.1
|
383
|
-
X-Teamsnap-Hmac:
|
384
|
-
- b7c58105c151c75e6da31d93ae5476a2aca1368ca0689c7e563e2a8e58ef68a0
|
385
|
-
response:
|
386
|
-
status:
|
387
|
-
code: 200
|
388
|
-
message: OK
|
389
|
-
headers:
|
390
|
-
Content-Type:
|
391
|
-
- application/vnd.collection+json
|
392
|
-
Content-Length:
|
393
|
-
- '641'
|
394
|
-
X-Content-Type-Options:
|
395
|
-
- nosniff
|
396
|
-
ETag:
|
397
|
-
- '"6e99e065a2d788a7018a484b3fb86e50"'
|
398
|
-
Cache-Control:
|
399
|
-
- max-age=0, private, must-revalidate
|
400
|
-
X-Request-Id:
|
401
|
-
- 84d2fead-c144-4a0e-8a30-e691a01d2135
|
402
|
-
X-Runtime:
|
403
|
-
- '0.009956'
|
404
|
-
Connection:
|
405
|
-
- keep-alive
|
406
|
-
Server:
|
407
|
-
- thin
|
408
|
-
body:
|
409
|
-
encoding: UTF-8
|
410
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/custom_fields","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"kind","value":null},{"name":"options","value":null},{"name":"help_text","value":null}]},"links":[{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}}'
|
411
|
-
http_version: '1.1'
|
412
|
-
adapter_metadata:
|
413
|
-
effective_url: http://localhost:3000/custom_fields?hmac_client_id=classic&hmac_nonce=23240b8c-98b7-4e4b-aff0-17332462592f&hmac_timestamp=1432825400
|
414
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
415
|
-
- request:
|
416
|
-
method: get
|
417
|
-
uri: http://localhost:3000/league_custom_data?hmac_client_id=classic&hmac_nonce=42a0d4ab-1d1d-48e4-97f1-08184bbfdf41&hmac_timestamp=1432825400
|
418
|
-
body:
|
419
|
-
encoding: US-ASCII
|
420
|
-
string: ''
|
421
|
-
headers:
|
422
|
-
User-Agent:
|
423
|
-
- Faraday v0.9.1
|
424
|
-
X-Teamsnap-Hmac:
|
425
|
-
- 177165a65ad391e863bfbc9889f93d22aaec0ddcf2252f068345d0083c3447be
|
426
|
-
response:
|
427
|
-
status:
|
428
|
-
code: 200
|
429
|
-
message: OK
|
430
|
-
headers:
|
431
|
-
Content-Type:
|
432
|
-
- application/vnd.collection+json
|
433
|
-
Content-Length:
|
434
|
-
- '836'
|
435
|
-
X-Content-Type-Options:
|
436
|
-
- nosniff
|
437
|
-
ETag:
|
438
|
-
- '"50fe28731322827ce534589026eb05e4"'
|
439
|
-
Cache-Control:
|
440
|
-
- max-age=0, private, must-revalidate
|
441
|
-
X-Request-Id:
|
442
|
-
- 337382a2-c205-43f9-a465-ace33bd35a61
|
443
|
-
X-Runtime:
|
444
|
-
- '0.009418'
|
445
|
-
Connection:
|
446
|
-
- keep-alive
|
447
|
-
Server:
|
448
|
-
- thin
|
449
|
-
body:
|
450
|
-
encoding: UTF-8
|
451
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/league_custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"league_custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"league_custom_field","href":"http://localhost:3000/league_custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"division_id","value":null},{"name":"league_custom_field_id","value":null}]}]}}'
|
452
|
-
http_version: '1.1'
|
453
|
-
adapter_metadata:
|
454
|
-
effective_url: http://localhost:3000/league_custom_data?hmac_client_id=classic&hmac_nonce=42a0d4ab-1d1d-48e4-97f1-08184bbfdf41&hmac_timestamp=1432825400
|
455
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
456
|
-
- request:
|
457
|
-
method: get
|
458
|
-
uri: http://localhost:3000/league_custom_fields?hmac_client_id=classic&hmac_nonce=7602e971-9b5c-46b8-8e30-5e35e829cd57&hmac_timestamp=1432825400
|
459
|
-
body:
|
460
|
-
encoding: US-ASCII
|
461
|
-
string: ''
|
462
|
-
headers:
|
463
|
-
User-Agent:
|
464
|
-
- Faraday v0.9.1
|
465
|
-
X-Teamsnap-Hmac:
|
466
|
-
- 7130f1d51fce0c4e4ad6b081eb5eb8907724954593e6061c607b58e6b9eb361d
|
467
|
-
response:
|
468
|
-
status:
|
469
|
-
code: 200
|
470
|
-
message: OK
|
471
|
-
headers:
|
472
|
-
Content-Type:
|
473
|
-
- application/vnd.collection+json
|
474
|
-
Content-Length:
|
475
|
-
- '535'
|
476
|
-
X-Content-Type-Options:
|
477
|
-
- nosniff
|
478
|
-
ETag:
|
479
|
-
- '"6b56fa33dab35a7b347f5db70ff5c023"'
|
480
|
-
Cache-Control:
|
481
|
-
- max-age=0, private, must-revalidate
|
482
|
-
X-Request-Id:
|
483
|
-
- 102ff9ba-f19a-46f3-96d7-bf2cf5992b9a
|
484
|
-
X-Runtime:
|
485
|
-
- '0.009625'
|
486
|
-
Connection:
|
487
|
-
- keep-alive
|
488
|
-
Server:
|
489
|
-
- thin
|
490
|
-
body:
|
491
|
-
encoding: UTF-8
|
492
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/league_custom_fields","links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"self","href":"http://localhost:3000/league_custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null}]}]}}'
|
493
|
-
http_version: '1.1'
|
494
|
-
adapter_metadata:
|
495
|
-
effective_url: http://localhost:3000/league_custom_fields?hmac_client_id=classic&hmac_nonce=7602e971-9b5c-46b8-8e30-5e35e829cd57&hmac_timestamp=1432825400
|
496
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
497
|
-
- request:
|
498
|
-
method: get
|
499
|
-
uri: http://localhost:3000/division_members?hmac_client_id=classic&hmac_nonce=c96c75e8-0300-4c70-b456-eda0e1f20033&hmac_timestamp=1432825400
|
500
|
-
body:
|
501
|
-
encoding: US-ASCII
|
502
|
-
string: ''
|
503
|
-
headers:
|
504
|
-
User-Agent:
|
505
|
-
- Faraday v0.9.1
|
506
|
-
X-Teamsnap-Hmac:
|
507
|
-
- 3a495c9b984a7ebdbbc9727d741433a0836f08718446a620a823ab04307a5e1c
|
508
|
-
response:
|
509
|
-
status:
|
510
|
-
code: 200
|
511
|
-
message: OK
|
512
|
-
headers:
|
513
|
-
Content-Type:
|
514
|
-
- application/vnd.collection+json
|
515
|
-
Content-Length:
|
516
|
-
- '602'
|
517
|
-
X-Content-Type-Options:
|
518
|
-
- nosniff
|
519
|
-
ETag:
|
520
|
-
- '"a6f2f54bbf16df1052edb5f00a770610"'
|
521
|
-
Cache-Control:
|
522
|
-
- max-age=0, private, must-revalidate
|
523
|
-
X-Request-Id:
|
524
|
-
- fa7efdea-4d93-41c4-8ed6-c1f32bd3c31a
|
525
|
-
X-Runtime:
|
526
|
-
- '0.009343'
|
527
|
-
Connection:
|
528
|
-
- keep-alive
|
529
|
-
Server:
|
530
|
-
- thin
|
531
|
-
body:
|
532
|
-
encoding: UTF-8
|
533
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
|
534
|
-
a division member by the id of the team they are a commissioner of"},{"name":"user_id","value":null},{"name":"id","value":null}]}],"links":[{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}}'
|
535
|
-
http_version: '1.1'
|
536
|
-
adapter_metadata:
|
537
|
-
effective_url: http://localhost:3000/division_members?hmac_client_id=classic&hmac_nonce=c96c75e8-0300-4c70-b456-eda0e1f20033&hmac_timestamp=1432825400
|
538
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
539
|
-
- request:
|
540
|
-
method: get
|
541
|
-
uri: http://localhost:3000/division_members?hmac_client_id=classic&hmac_nonce=ae5f6969-3a6d-4697-95af-5a2d2d81bb23&hmac_timestamp=1432825400
|
542
|
-
body:
|
543
|
-
encoding: US-ASCII
|
544
|
-
string: ''
|
545
|
-
headers:
|
546
|
-
User-Agent:
|
547
|
-
- Faraday v0.9.1
|
548
|
-
X-Teamsnap-Hmac:
|
549
|
-
- ab6b4df9aa8c9322341e38894220792bcb5e9d6b9da070286469fbbd0ce53e27
|
550
|
-
response:
|
551
|
-
status:
|
552
|
-
code: 200
|
553
|
-
message: OK
|
554
|
-
headers:
|
555
|
-
Content-Type:
|
556
|
-
- application/vnd.collection+json
|
557
|
-
Content-Length:
|
558
|
-
- '602'
|
559
|
-
X-Content-Type-Options:
|
560
|
-
- nosniff
|
561
|
-
ETag:
|
562
|
-
- '"a6f2f54bbf16df1052edb5f00a770610"'
|
563
|
-
Cache-Control:
|
564
|
-
- max-age=0, private, must-revalidate
|
565
|
-
X-Request-Id:
|
566
|
-
- 8788e2b1-48ab-49e7-ac3a-9adcb67e1441
|
567
|
-
X-Runtime:
|
568
|
-
- '0.009387'
|
569
|
-
Connection:
|
570
|
-
- keep-alive
|
571
|
-
Server:
|
572
|
-
- thin
|
573
|
-
body:
|
574
|
-
encoding: UTF-8
|
575
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
|
576
|
-
a division member by the id of the team they are a commissioner of"},{"name":"user_id","value":null},{"name":"id","value":null}]}],"links":[{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}}'
|
577
|
-
http_version: '1.1'
|
578
|
-
adapter_metadata:
|
579
|
-
effective_url: http://localhost:3000/division_members?hmac_client_id=classic&hmac_nonce=ae5f6969-3a6d-4697-95af-5a2d2d81bb23&hmac_timestamp=1432825400
|
580
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
581
|
-
- request:
|
582
|
-
method: get
|
583
|
-
uri: http://localhost:3000/division_members_preferences?hmac_client_id=classic&hmac_nonce=1cc011aa-faaa-4d6d-b9e7-dfcc42a19187&hmac_timestamp=1432825400
|
584
|
-
body:
|
585
|
-
encoding: US-ASCII
|
586
|
-
string: ''
|
587
|
-
headers:
|
588
|
-
User-Agent:
|
589
|
-
- Faraday v0.9.1
|
590
|
-
X-Teamsnap-Hmac:
|
591
|
-
- ed80dff13a45c443817ad886e988f1a809bb4b2a5a3c2cd82800a980d4965192
|
592
|
-
response:
|
593
|
-
status:
|
594
|
-
code: 200
|
595
|
-
message: OK
|
596
|
-
headers:
|
597
|
-
Content-Type:
|
598
|
-
- application/vnd.collection+json
|
599
|
-
Content-Length:
|
600
|
-
- '1589'
|
601
|
-
X-Content-Type-Options:
|
602
|
-
- nosniff
|
603
|
-
ETag:
|
604
|
-
- '"8e7802e805124a5bb8254c90d5658688"'
|
605
|
-
Cache-Control:
|
606
|
-
- max-age=0, private, must-revalidate
|
607
|
-
X-Request-Id:
|
608
|
-
- 26753831-c1b8-4e49-b8b3-5c11bbdb6389
|
609
|
-
X-Runtime:
|
610
|
-
- '0.009586'
|
611
|
-
Connection:
|
612
|
-
- keep-alive
|
613
|
-
Server:
|
614
|
-
- thin
|
615
|
-
body:
|
616
|
-
encoding: UTF-8
|
617
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/division_members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
618
|
-
http_version: '1.1'
|
619
|
-
adapter_metadata:
|
620
|
-
effective_url: http://localhost:3000/division_members_preferences?hmac_client_id=classic&hmac_nonce=1cc011aa-faaa-4d6d-b9e7-dfcc42a19187&hmac_timestamp=1432825400
|
621
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
622
|
-
- request:
|
623
|
-
method: get
|
624
|
-
uri: http://localhost:3000/events?hmac_client_id=classic&hmac_nonce=71f0ac94-36be-44b5-a589-88696cc6580f&hmac_timestamp=1432825400
|
625
|
-
body:
|
626
|
-
encoding: US-ASCII
|
627
|
-
string: ''
|
628
|
-
headers:
|
629
|
-
User-Agent:
|
630
|
-
- Faraday v0.9.1
|
631
|
-
X-Teamsnap-Hmac:
|
632
|
-
- d7c7c19b19d19cae0e65ba528556add804e68ce37693cdc6a5cc3fb7ce49c57f
|
633
|
-
response:
|
634
|
-
status:
|
635
|
-
code: 200
|
636
|
-
message: OK
|
637
|
-
headers:
|
638
|
-
Content-Type:
|
639
|
-
- application/vnd.collection+json
|
640
|
-
Content-Length:
|
641
|
-
- '2753'
|
642
|
-
X-Content-Type-Options:
|
643
|
-
- nosniff
|
644
|
-
ETag:
|
645
|
-
- '"d326d1bdc321adca089c0b0b09a4b989"'
|
646
|
-
Cache-Control:
|
647
|
-
- max-age=0, private, must-revalidate
|
648
|
-
X-Request-Id:
|
649
|
-
- b1db2a0a-f7d1-4a52-b5fb-4d5bb8e0d7ea
|
650
|
-
X-Runtime:
|
651
|
-
- '0.009511'
|
652
|
-
Connection:
|
653
|
-
- keep-alive
|
654
|
-
Server:
|
655
|
-
- thin
|
656
|
-
body:
|
657
|
-
encoding: UTF-8
|
658
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/events","template":{"data":[{"name":"repeating_type_code","value":null},{"name":"is_game","value":null},{"name":"start_date","value":null},{"name":"is_tbd","value":null},{"name":"name","value":null},{"name":"label","value":null},{"name":"game_type_code","value":null},{"name":"icon_color","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"duration_in_minutes","value":null},{"name":"notes","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","value":null},{"name":"is_canceled","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_opponent","value":null},{"name":"notify_opponent_contacts_name","value":null},{"name":"notify_opponent_contacts_email","value":null},{"name":"notify_opponent_notes","value":null},{"name":"team_id","value":null},{"name":"division_location_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"repeating_until","value":null},{"name":"repeating_include","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"location","href":"http://localhost:3000/locations"},{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/events"}],"queries":[{"rel":"search","href":"http://localhost:3000/events/search","data":[{"name":"team_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"started_after","value":null},{"name":"started_before","value":null},{"name":"id","value":null}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"send_availability_reminders","href":"http://localhost:3000/events/send_availability_reminders","prompt":"members_to_notify
|
659
|
-
= (all|unset)","data":[{"name":"id","value":null},{"name":"members_to_notify","value":null},{"name":"notify_team_as_member_id","value":null}]}]}}'
|
660
|
-
http_version: '1.1'
|
661
|
-
adapter_metadata:
|
662
|
-
effective_url: http://localhost:3000/events?hmac_client_id=classic&hmac_nonce=71f0ac94-36be-44b5-a589-88696cc6580f&hmac_timestamp=1432825400
|
663
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
664
|
-
- request:
|
665
|
-
method: get
|
666
|
-
uri: http://localhost:3000/forecasts?hmac_client_id=classic&hmac_nonce=ff09bbc7-3728-40a2-b2c6-de595f808ae2&hmac_timestamp=1432825400
|
667
|
-
body:
|
668
|
-
encoding: US-ASCII
|
669
|
-
string: ''
|
670
|
-
headers:
|
671
|
-
User-Agent:
|
672
|
-
- Faraday v0.9.1
|
673
|
-
X-Teamsnap-Hmac:
|
674
|
-
- 7961acfd80538a4149e1b0bee6219ef4d0192c507686031adc1b4010f6f444aa
|
675
|
-
response:
|
676
|
-
status:
|
677
|
-
code: 200
|
678
|
-
message: OK
|
679
|
-
headers:
|
680
|
-
Content-Type:
|
681
|
-
- application/vnd.collection+json
|
682
|
-
Content-Length:
|
683
|
-
- '307'
|
684
|
-
X-Content-Type-Options:
|
685
|
-
- nosniff
|
686
|
-
ETag:
|
687
|
-
- '"c12c3c508acaa62f15f2d01eb3f18314"'
|
688
|
-
Cache-Control:
|
689
|
-
- max-age=0, private, must-revalidate
|
690
|
-
X-Request-Id:
|
691
|
-
- 10452c08-1f4f-479f-a933-437419a1943f
|
692
|
-
X-Runtime:
|
693
|
-
- '0.010073'
|
694
|
-
Connection:
|
695
|
-
- keep-alive
|
696
|
-
Server:
|
697
|
-
- thin
|
698
|
-
body:
|
699
|
-
encoding: UTF-8
|
700
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forecasts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]}]}}'
|
701
|
-
http_version: '1.1'
|
702
|
-
adapter_metadata:
|
703
|
-
effective_url: http://localhost:3000/forecasts?hmac_client_id=classic&hmac_nonce=ff09bbc7-3728-40a2-b2c6-de595f808ae2&hmac_timestamp=1432825400
|
704
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
705
|
-
- request:
|
706
|
-
method: get
|
707
|
-
uri: http://localhost:3000/forum_posts?hmac_client_id=classic&hmac_nonce=20f3a286-8b24-46f5-b634-f94f666adaca&hmac_timestamp=1432825400
|
708
|
-
body:
|
709
|
-
encoding: US-ASCII
|
710
|
-
string: ''
|
711
|
-
headers:
|
712
|
-
User-Agent:
|
713
|
-
- Faraday v0.9.1
|
714
|
-
X-Teamsnap-Hmac:
|
715
|
-
- 5a963948fb6d9163341cdf3ab7544b52080d0e6565a48f453a079faf7e1b6bcf
|
716
|
-
response:
|
717
|
-
status:
|
718
|
-
code: 200
|
719
|
-
message: OK
|
720
|
-
headers:
|
721
|
-
Content-Type:
|
722
|
-
- application/vnd.collection+json
|
723
|
-
Content-Length:
|
724
|
-
- '714'
|
725
|
-
X-Content-Type-Options:
|
726
|
-
- nosniff
|
727
|
-
ETag:
|
728
|
-
- '"93417fa2294aa047bac7eb49698d7bb1"'
|
729
|
-
Cache-Control:
|
730
|
-
- max-age=0, private, must-revalidate
|
731
|
-
X-Request-Id:
|
732
|
-
- c123626f-88a1-49f8-a32e-b7c0cd9d4664
|
733
|
-
X-Runtime:
|
734
|
-
- '0.011692'
|
735
|
-
Connection:
|
736
|
-
- keep-alive
|
737
|
-
Server:
|
738
|
-
- thin
|
739
|
-
body:
|
740
|
-
encoding: UTF-8
|
741
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/forum_posts","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_posts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_posts/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}}'
|
742
|
-
http_version: '1.1'
|
743
|
-
adapter_metadata:
|
744
|
-
effective_url: http://localhost:3000/forum_posts?hmac_client_id=classic&hmac_nonce=20f3a286-8b24-46f5-b634-f94f666adaca&hmac_timestamp=1432825400
|
745
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
746
|
-
- request:
|
747
|
-
method: get
|
748
|
-
uri: http://localhost:3000/forum_subscriptions?hmac_client_id=classic&hmac_nonce=8516303a-1e92-46de-921c-1d03ab9f8d32&hmac_timestamp=1432825400
|
749
|
-
body:
|
750
|
-
encoding: US-ASCII
|
751
|
-
string: ''
|
752
|
-
headers:
|
753
|
-
User-Agent:
|
754
|
-
- Faraday v0.9.1
|
755
|
-
X-Teamsnap-Hmac:
|
756
|
-
- 65d5112bbb9a47d6bd856aeb1abc208f56b168c7a84e2b3e9acabdc6ef8d8261
|
757
|
-
response:
|
758
|
-
status:
|
759
|
-
code: 200
|
760
|
-
message: OK
|
761
|
-
headers:
|
762
|
-
Content-Type:
|
763
|
-
- application/vnd.collection+json
|
764
|
-
Content-Length:
|
765
|
-
- '706'
|
766
|
-
X-Content-Type-Options:
|
767
|
-
- nosniff
|
768
|
-
ETag:
|
769
|
-
- '"31dcda275e63a02aae412659c469ad22"'
|
770
|
-
Cache-Control:
|
771
|
-
- max-age=0, private, must-revalidate
|
772
|
-
X-Request-Id:
|
773
|
-
- 96446ba9-59c0-4955-a2a1-18ff7e80c794
|
774
|
-
X-Runtime:
|
775
|
-
- '0.011912'
|
776
|
-
Connection:
|
777
|
-
- keep-alive
|
778
|
-
Server:
|
779
|
-
- thin
|
780
|
-
body:
|
781
|
-
encoding: UTF-8
|
782
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/forum_subscriptions","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_subscriptions"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_subscriptions/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}}'
|
783
|
-
http_version: '1.1'
|
784
|
-
adapter_metadata:
|
785
|
-
effective_url: http://localhost:3000/forum_subscriptions?hmac_client_id=classic&hmac_nonce=8516303a-1e92-46de-921c-1d03ab9f8d32&hmac_timestamp=1432825400
|
786
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
787
|
-
- request:
|
788
|
-
method: get
|
789
|
-
uri: http://localhost:3000/forum_topics?hmac_client_id=classic&hmac_nonce=f502b0e5-3c53-4ef3-aa7c-76b598142e7f&hmac_timestamp=1432825400
|
790
|
-
body:
|
791
|
-
encoding: US-ASCII
|
792
|
-
string: ''
|
793
|
-
headers:
|
794
|
-
User-Agent:
|
795
|
-
- Faraday v0.9.1
|
796
|
-
X-Teamsnap-Hmac:
|
797
|
-
- 2f8e3bbdf272c083f2d4b3a7b37d3d8d76216c8dcd3b3f7f9aa38339c6709a98
|
798
|
-
response:
|
799
|
-
status:
|
800
|
-
code: 200
|
801
|
-
message: OK
|
802
|
-
headers:
|
803
|
-
Content-Type:
|
804
|
-
- application/vnd.collection+json
|
805
|
-
Content-Length:
|
806
|
-
- '665'
|
807
|
-
X-Content-Type-Options:
|
808
|
-
- nosniff
|
809
|
-
ETag:
|
810
|
-
- '"d838dd422d3e7882e91b8593067b8aa0"'
|
811
|
-
Cache-Control:
|
812
|
-
- max-age=0, private, must-revalidate
|
813
|
-
X-Request-Id:
|
814
|
-
- eae6e164-645e-408b-9bfd-e1a33de47175
|
815
|
-
X-Runtime:
|
816
|
-
- '0.013678'
|
817
|
-
Connection:
|
818
|
-
- keep-alive
|
819
|
-
Server:
|
820
|
-
- thin
|
821
|
-
body:
|
822
|
-
encoding: UTF-8
|
823
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/forum_topics","template":{"data":[{"name":"title","value":null},{"name":"is_announcement","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_topics"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_topics/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
824
|
-
http_version: '1.1'
|
825
|
-
adapter_metadata:
|
826
|
-
effective_url: http://localhost:3000/forum_topics?hmac_client_id=classic&hmac_nonce=f502b0e5-3c53-4ef3-aa7c-76b598142e7f&hmac_timestamp=1432825400
|
827
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
828
|
-
- request:
|
829
|
-
method: get
|
830
|
-
uri: http://localhost:3000/geocoded_locations?hmac_client_id=classic&hmac_nonce=927be3ee-8218-488e-9803-79828cf6b7b7&hmac_timestamp=1432825400
|
831
|
-
body:
|
832
|
-
encoding: US-ASCII
|
833
|
-
string: ''
|
834
|
-
headers:
|
835
|
-
User-Agent:
|
836
|
-
- Faraday v0.9.1
|
837
|
-
X-Teamsnap-Hmac:
|
838
|
-
- 44fa37f37f9a8c08d5de7c54714b46e23ea7179b4c805754d2031ef751d92d20
|
839
|
-
response:
|
840
|
-
status:
|
841
|
-
code: 200
|
842
|
-
message: OK
|
843
|
-
headers:
|
844
|
-
Content-Type:
|
845
|
-
- application/vnd.collection+json
|
846
|
-
Content-Length:
|
847
|
-
- '370'
|
848
|
-
X-Content-Type-Options:
|
849
|
-
- nosniff
|
850
|
-
ETag:
|
851
|
-
- '"502743f41ef72f064daae179b6a86da1"'
|
852
|
-
Cache-Control:
|
853
|
-
- max-age=0, private, must-revalidate
|
854
|
-
X-Request-Id:
|
855
|
-
- c07d9bc1-38e5-4c4a-8800-4b2b8ab09a72
|
856
|
-
X-Runtime:
|
857
|
-
- '0.012221'
|
858
|
-
Connection:
|
859
|
-
- keep-alive
|
860
|
-
Server:
|
861
|
-
- thin
|
862
|
-
body:
|
863
|
-
encoding: UTF-8
|
864
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/geocoded_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]}]}}'
|
865
|
-
http_version: '1.1'
|
866
|
-
adapter_metadata:
|
867
|
-
effective_url: http://localhost:3000/geocoded_locations?hmac_client_id=classic&hmac_nonce=927be3ee-8218-488e-9803-79828cf6b7b7&hmac_timestamp=1432825400
|
868
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
869
|
-
- request:
|
870
|
-
method: get
|
871
|
-
uri: http://localhost:3000/league_registrant_documents?hmac_client_id=classic&hmac_nonce=01bac4e0-48be-4db6-8a07-8befd2d57043&hmac_timestamp=1432825400
|
872
|
-
body:
|
873
|
-
encoding: US-ASCII
|
874
|
-
string: ''
|
875
|
-
headers:
|
876
|
-
User-Agent:
|
877
|
-
- Faraday v0.9.1
|
878
|
-
X-Teamsnap-Hmac:
|
879
|
-
- e33572ece735b1ca2558371a17a9061fed55f282fc3177d4acaddb3c8653ad94
|
880
|
-
response:
|
881
|
-
status:
|
882
|
-
code: 200
|
883
|
-
message: OK
|
884
|
-
headers:
|
885
|
-
Content-Type:
|
886
|
-
- application/vnd.collection+json
|
887
|
-
Content-Length:
|
888
|
-
- '530'
|
889
|
-
X-Content-Type-Options:
|
890
|
-
- nosniff
|
891
|
-
ETag:
|
892
|
-
- '"ca0579dcfe679b3bc785b308de0501dc"'
|
893
|
-
Cache-Control:
|
894
|
-
- max-age=0, private, must-revalidate
|
895
|
-
X-Request-Id:
|
896
|
-
- 2a6c910b-86fe-4096-a85a-415c6e6f3691
|
897
|
-
X-Runtime:
|
898
|
-
- '0.012336'
|
899
|
-
Connection:
|
900
|
-
- keep-alive
|
901
|
-
Server:
|
902
|
-
- thin
|
903
|
-
body:
|
904
|
-
encoding: UTF-8
|
905
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_registrant_documents"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_registrant_documents/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}}'
|
906
|
-
http_version: '1.1'
|
907
|
-
adapter_metadata:
|
908
|
-
effective_url: http://localhost:3000/league_registrant_documents?hmac_client_id=classic&hmac_nonce=01bac4e0-48be-4db6-8a07-8befd2d57043&hmac_timestamp=1432825400
|
909
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
910
|
-
- request:
|
911
|
-
method: get
|
912
|
-
uri: http://localhost:3000/locations?hmac_client_id=classic&hmac_nonce=12be881b-ff4e-4d78-bf0a-a83ccf725675&hmac_timestamp=1432825400
|
913
|
-
body:
|
914
|
-
encoding: US-ASCII
|
915
|
-
string: ''
|
916
|
-
headers:
|
917
|
-
User-Agent:
|
918
|
-
- Faraday v0.9.1
|
919
|
-
X-Teamsnap-Hmac:
|
920
|
-
- 49cb117f0804b83efc72972817ebf8861a9d4b1db0bf67426dc493575c82e022
|
921
|
-
response:
|
922
|
-
status:
|
923
|
-
code: 200
|
924
|
-
message: OK
|
925
|
-
headers:
|
926
|
-
Content-Type:
|
927
|
-
- application/vnd.collection+json
|
928
|
-
Content-Length:
|
929
|
-
- '644'
|
930
|
-
X-Content-Type-Options:
|
931
|
-
- nosniff
|
932
|
-
ETag:
|
933
|
-
- '"1606baf23311b92e45abfaaffe8ad5a6"'
|
934
|
-
Cache-Control:
|
935
|
-
- max-age=0, private, must-revalidate
|
936
|
-
X-Request-Id:
|
937
|
-
- 94dabc69-9b25-4f69-a758-8538c62865eb
|
938
|
-
X-Runtime:
|
939
|
-
- '0.011953'
|
940
|
-
Connection:
|
941
|
-
- keep-alive
|
942
|
-
Server:
|
943
|
-
- thin
|
944
|
-
body:
|
945
|
-
encoding: UTF-8
|
946
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/locations","template":{"data":[{"name":"name","value":null},{"name":"url","value":null},{"name":"phone","value":null},{"name":"notes","value":null},{"name":"address","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
947
|
-
http_version: '1.1'
|
948
|
-
adapter_metadata:
|
949
|
-
effective_url: http://localhost:3000/locations?hmac_client_id=classic&hmac_nonce=12be881b-ff4e-4d78-bf0a-a83ccf725675&hmac_timestamp=1432825400
|
950
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
951
|
-
- request:
|
952
|
-
method: get
|
953
|
-
uri: http://localhost:3000/member_email_addresses?hmac_client_id=classic&hmac_nonce=14244cac-ac89-4849-bea5-9fe487bbde29&hmac_timestamp=1432825400
|
954
|
-
body:
|
955
|
-
encoding: US-ASCII
|
956
|
-
string: ''
|
957
|
-
headers:
|
958
|
-
User-Agent:
|
959
|
-
- Faraday v0.9.1
|
960
|
-
X-Teamsnap-Hmac:
|
961
|
-
- 7f247da2f46c871290df2ae72d5af20fae4eae4eda0e23156e5508f7f649cdf3
|
962
|
-
response:
|
963
|
-
status:
|
964
|
-
code: 200
|
965
|
-
message: OK
|
966
|
-
headers:
|
967
|
-
Content-Type:
|
968
|
-
- application/vnd.collection+json
|
969
|
-
Content-Length:
|
970
|
-
- '710'
|
971
|
-
X-Content-Type-Options:
|
972
|
-
- nosniff
|
973
|
-
ETag:
|
974
|
-
- '"585200dd6af5c5496376dcc652587e3c"'
|
975
|
-
Cache-Control:
|
976
|
-
- max-age=0, private, must-revalidate
|
977
|
-
X-Request-Id:
|
978
|
-
- db45c285-9a39-4df2-95a2-5e9731c67bc3
|
979
|
-
X-Runtime:
|
980
|
-
- '0.012763'
|
981
|
-
Connection:
|
982
|
-
- keep-alive
|
983
|
-
Server:
|
984
|
-
- thin
|
985
|
-
body:
|
986
|
-
encoding: UTF-8
|
987
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}}'
|
988
|
-
http_version: '1.1'
|
989
|
-
adapter_metadata:
|
990
|
-
effective_url: http://localhost:3000/member_email_addresses?hmac_client_id=classic&hmac_nonce=14244cac-ac89-4849-bea5-9fe487bbde29&hmac_timestamp=1432825400
|
991
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
992
|
-
- request:
|
993
|
-
method: get
|
994
|
-
uri: http://localhost:3000/member_files?hmac_client_id=classic&hmac_nonce=6653b840-b36f-4f16-8f61-254a7403f082&hmac_timestamp=1432825400
|
995
|
-
body:
|
996
|
-
encoding: US-ASCII
|
997
|
-
string: ''
|
998
|
-
headers:
|
999
|
-
User-Agent:
|
1000
|
-
- Faraday v0.9.1
|
1001
|
-
X-Teamsnap-Hmac:
|
1002
|
-
- da7ae0b04e659802069e5fa72c8cb105ccd8c7293600da2dcb6c93771d1615df
|
1003
|
-
response:
|
1004
|
-
status:
|
1005
|
-
code: 200
|
1006
|
-
message: OK
|
1007
|
-
headers:
|
1008
|
-
Content-Type:
|
1009
|
-
- application/vnd.collection+json
|
1010
|
-
Content-Length:
|
1011
|
-
- '827'
|
1012
|
-
X-Content-Type-Options:
|
1013
|
-
- nosniff
|
1014
|
-
ETag:
|
1015
|
-
- '"2dd0a282cc73c7226a559597fdce78b0"'
|
1016
|
-
Cache-Control:
|
1017
|
-
- max-age=0, private, must-revalidate
|
1018
|
-
X-Request-Id:
|
1019
|
-
- c1efbcd6-cdde-42fe-8adc-cfaafcac195b
|
1020
|
-
X-Runtime:
|
1021
|
-
- '0.012003'
|
1022
|
-
Connection:
|
1023
|
-
- keep-alive
|
1024
|
-
Server:
|
1025
|
-
- thin
|
1026
|
-
body:
|
1027
|
-
encoding: UTF-8
|
1028
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/member_files","template":{"data":[{"name":"member_id","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_files"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_files/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
|
1029
|
-
a member file.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}}'
|
1030
|
-
http_version: '1.1'
|
1031
|
-
adapter_metadata:
|
1032
|
-
effective_url: http://localhost:3000/member_files?hmac_client_id=classic&hmac_nonce=6653b840-b36f-4f16-8f61-254a7403f082&hmac_timestamp=1432825400
|
1033
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1034
|
-
- request:
|
1035
|
-
method: get
|
1036
|
-
uri: http://localhost:3000/member_links?hmac_client_id=classic&hmac_nonce=4f79b546-3316-42a4-a15c-2bd0f4bb1c5a&hmac_timestamp=1432825400
|
1037
|
-
body:
|
1038
|
-
encoding: US-ASCII
|
1039
|
-
string: ''
|
1040
|
-
headers:
|
1041
|
-
User-Agent:
|
1042
|
-
- Faraday v0.9.1
|
1043
|
-
X-Teamsnap-Hmac:
|
1044
|
-
- 7a970e75d17ba41d74df988100ac63e4c81e2935de05cea83897f668e50c8daa
|
1045
|
-
response:
|
1046
|
-
status:
|
1047
|
-
code: 200
|
1048
|
-
message: OK
|
1049
|
-
headers:
|
1050
|
-
Content-Type:
|
1051
|
-
- application/vnd.collection+json
|
1052
|
-
Content-Length:
|
1053
|
-
- '640'
|
1054
|
-
X-Content-Type-Options:
|
1055
|
-
- nosniff
|
1056
|
-
ETag:
|
1057
|
-
- '"24680ac0e126b534c8f4859a3d67c60f"'
|
1058
|
-
Cache-Control:
|
1059
|
-
- max-age=0, private, must-revalidate
|
1060
|
-
X-Request-Id:
|
1061
|
-
- 3e276a79-21f9-48ec-8aac-fc82cc40bff9
|
1062
|
-
X-Runtime:
|
1063
|
-
- '0.011375'
|
1064
|
-
Connection:
|
1065
|
-
- keep-alive
|
1066
|
-
Server:
|
1067
|
-
- thin
|
1068
|
-
body:
|
1069
|
-
encoding: UTF-8
|
1070
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/member_links","template":{"data":[{"name":"member_id","value":null},{"name":"url","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_links"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_links/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}}'
|
1071
|
-
http_version: '1.1'
|
1072
|
-
adapter_metadata:
|
1073
|
-
effective_url: http://localhost:3000/member_links?hmac_client_id=classic&hmac_nonce=4f79b546-3316-42a4-a15c-2bd0f4bb1c5a&hmac_timestamp=1432825400
|
1074
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1075
|
-
- request:
|
1076
|
-
method: get
|
1077
|
-
uri: http://localhost:3000/member_payments?hmac_client_id=classic&hmac_nonce=a150998b-77ba-47a3-933a-45474130c905&hmac_timestamp=1432825400
|
1078
|
-
body:
|
1079
|
-
encoding: US-ASCII
|
1080
|
-
string: ''
|
1081
|
-
headers:
|
1082
|
-
User-Agent:
|
1083
|
-
- Faraday v0.9.1
|
1084
|
-
X-Teamsnap-Hmac:
|
1085
|
-
- b227fd19145f8718b61b4af6bff66ac8d2e38d921da02545c6819fadc34f7665
|
1086
|
-
response:
|
1087
|
-
status:
|
1088
|
-
code: 200
|
1089
|
-
message: OK
|
1090
|
-
headers:
|
1091
|
-
Content-Type:
|
1092
|
-
- application/vnd.collection+json
|
1093
|
-
Content-Length:
|
1094
|
-
- '889'
|
1095
|
-
X-Content-Type-Options:
|
1096
|
-
- nosniff
|
1097
|
-
ETag:
|
1098
|
-
- '"1ecd203d3f9b7fb5a1d16bcdaab96415"'
|
1099
|
-
Cache-Control:
|
1100
|
-
- max-age=0, private, must-revalidate
|
1101
|
-
X-Request-Id:
|
1102
|
-
- 77e297de-d72a-48a0-8e2d-fac05b11bb17
|
1103
|
-
X-Runtime:
|
1104
|
-
- '0.011314'
|
1105
|
-
Connection:
|
1106
|
-
- keep-alive
|
1107
|
-
Server:
|
1108
|
-
- thin
|
1109
|
-
body:
|
1110
|
-
encoding: UTF-8
|
1111
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/member_payments","template":{"data":[{"name":"amount_paid","value":null},{"name":"amount_due","value":null},{"name":"is_applicable","value":null},{"name":"member_id","value":null},{"name":"note","value":null},{"name":"team_fee_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_fee","href":"http://localhost:3000/team_fees"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_payments"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_payments/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_fee_id","value":null},{"name":"team_id","value":null}]}]}}'
|
1112
|
-
http_version: '1.1'
|
1113
|
-
adapter_metadata:
|
1114
|
-
effective_url: http://localhost:3000/member_payments?hmac_client_id=classic&hmac_nonce=a150998b-77ba-47a3-933a-45474130c905&hmac_timestamp=1432825400
|
1115
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1116
|
-
- request:
|
1117
|
-
method: get
|
1118
|
-
uri: http://localhost:3000/member_phone_numbers?hmac_client_id=classic&hmac_nonce=cbf893b1-efc7-461d-98c7-e75af883e9dd&hmac_timestamp=1432825400
|
1119
|
-
body:
|
1120
|
-
encoding: US-ASCII
|
1121
|
-
string: ''
|
1122
|
-
headers:
|
1123
|
-
User-Agent:
|
1124
|
-
- Faraday v0.9.1
|
1125
|
-
X-Teamsnap-Hmac:
|
1126
|
-
- 189c5c35370c6e1b1940a451dbaf119a5952002775d53a78846d0cf0e920d8f6
|
1127
|
-
response:
|
1128
|
-
status:
|
1129
|
-
code: 200
|
1130
|
-
message: OK
|
1131
|
-
headers:
|
1132
|
-
Content-Type:
|
1133
|
-
- application/vnd.collection+json
|
1134
|
-
Content-Length:
|
1135
|
-
- '841'
|
1136
|
-
X-Content-Type-Options:
|
1137
|
-
- nosniff
|
1138
|
-
ETag:
|
1139
|
-
- '"e9756aaa02128a33e56f1d62bf428a49"'
|
1140
|
-
Cache-Control:
|
1141
|
-
- max-age=0, private, must-revalidate
|
1142
|
-
X-Request-Id:
|
1143
|
-
- c6426d29-563e-45ee-9e24-3cb381d7d19b
|
1144
|
-
X-Runtime:
|
1145
|
-
- '0.011622'
|
1146
|
-
Connection:
|
1147
|
-
- keep-alive
|
1148
|
-
Server:
|
1149
|
-
- thin
|
1150
|
-
body:
|
1151
|
-
encoding: UTF-8
|
1152
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null}]}]}}'
|
1153
|
-
http_version: '1.1'
|
1154
|
-
adapter_metadata:
|
1155
|
-
effective_url: http://localhost:3000/member_phone_numbers?hmac_client_id=classic&hmac_nonce=cbf893b1-efc7-461d-98c7-e75af883e9dd&hmac_timestamp=1432825400
|
1156
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1157
|
-
- request:
|
1158
|
-
method: get
|
1159
|
-
uri: http://localhost:3000/members?hmac_client_id=classic&hmac_nonce=a184282c-442f-498b-86d3-69476576fe87&hmac_timestamp=1432825400
|
1160
|
-
body:
|
1161
|
-
encoding: US-ASCII
|
1162
|
-
string: ''
|
1163
|
-
headers:
|
1164
|
-
User-Agent:
|
1165
|
-
- Faraday v0.9.1
|
1166
|
-
X-Teamsnap-Hmac:
|
1167
|
-
- 2cc700bb29fe0127db812bba46072d8cdf3c062987e8abb2ea4877d91ce0f71f
|
1168
|
-
response:
|
1169
|
-
status:
|
1170
|
-
code: 200
|
1171
|
-
message: OK
|
1172
|
-
headers:
|
1173
|
-
Content-Type:
|
1174
|
-
- application/vnd.collection+json
|
1175
|
-
Content-Length:
|
1176
|
-
- '3800'
|
1177
|
-
X-Content-Type-Options:
|
1178
|
-
- nosniff
|
1179
|
-
ETag:
|
1180
|
-
- '"5ea10b6820112f1d4a5986c09f9b8233"'
|
1181
|
-
Cache-Control:
|
1182
|
-
- max-age=0, private, must-revalidate
|
1183
|
-
X-Request-Id:
|
1184
|
-
- d73df304-fb16-4673-8104-baa1d4c102f4
|
1185
|
-
X-Runtime:
|
1186
|
-
- '0.012368'
|
1187
|
-
Connection:
|
1188
|
-
- keep-alive
|
1189
|
-
Server:
|
1190
|
-
- thin
|
1191
|
-
body:
|
1192
|
-
encoding: UTF-8
|
1193
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null},{"name":"hide_address","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"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":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"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_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]}]}}'
|
1194
|
-
http_version: '1.1'
|
1195
|
-
adapter_metadata:
|
1196
|
-
effective_url: http://localhost:3000/members?hmac_client_id=classic&hmac_nonce=a184282c-442f-498b-86d3-69476576fe87&hmac_timestamp=1432825400
|
1197
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1198
|
-
- request:
|
1199
|
-
method: get
|
1200
|
-
uri: http://localhost:3000/members_preferences?hmac_client_id=classic&hmac_nonce=b1ad3746-5a9a-4b42-95c8-38af80abdf4e&hmac_timestamp=1432825400
|
1201
|
-
body:
|
1202
|
-
encoding: US-ASCII
|
1203
|
-
string: ''
|
1204
|
-
headers:
|
1205
|
-
User-Agent:
|
1206
|
-
- Faraday v0.9.1
|
1207
|
-
X-Teamsnap-Hmac:
|
1208
|
-
- ad16686a022d373823d840b68440f5c70b570c997b57c7337434e1e07b6c450b
|
1209
|
-
response:
|
1210
|
-
status:
|
1211
|
-
code: 200
|
1212
|
-
message: OK
|
1213
|
-
headers:
|
1214
|
-
Content-Type:
|
1215
|
-
- application/vnd.collection+json
|
1216
|
-
Content-Length:
|
1217
|
-
- '1623'
|
1218
|
-
X-Content-Type-Options:
|
1219
|
-
- nosniff
|
1220
|
-
ETag:
|
1221
|
-
- '"65bc98f87a448c2ec64941f9e50a576a"'
|
1222
|
-
Cache-Control:
|
1223
|
-
- max-age=0, private, must-revalidate
|
1224
|
-
X-Request-Id:
|
1225
|
-
- c773dfe0-51f2-4ffd-aba3-d3adbf7b8685
|
1226
|
-
X-Runtime:
|
1227
|
-
- '0.009838'
|
1228
|
-
Connection:
|
1229
|
-
- keep-alive
|
1230
|
-
Server:
|
1231
|
-
- thin
|
1232
|
-
body:
|
1233
|
-
encoding: UTF-8
|
1234
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
1235
|
-
http_version: '1.1'
|
1236
|
-
adapter_metadata:
|
1237
|
-
effective_url: http://localhost:3000/members_preferences?hmac_client_id=classic&hmac_nonce=b1ad3746-5a9a-4b42-95c8-38af80abdf4e&hmac_timestamp=1432825400
|
1238
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1239
|
-
- request:
|
1240
|
-
method: get
|
1241
|
-
uri: http://localhost:3000/opponents?hmac_client_id=classic&hmac_nonce=c94f386b-6785-4a2e-8315-b1d0e692c736&hmac_timestamp=1432825400
|
1242
|
-
body:
|
1243
|
-
encoding: US-ASCII
|
1244
|
-
string: ''
|
1245
|
-
headers:
|
1246
|
-
User-Agent:
|
1247
|
-
- Faraday v0.9.1
|
1248
|
-
X-Teamsnap-Hmac:
|
1249
|
-
- 6737ea77c4331545e9399a2bde62a650cf6a39e28f9180864adf887143e967fd
|
1250
|
-
response:
|
1251
|
-
status:
|
1252
|
-
code: 200
|
1253
|
-
message: OK
|
1254
|
-
headers:
|
1255
|
-
Content-Type:
|
1256
|
-
- application/vnd.collection+json
|
1257
|
-
Content-Length:
|
1258
|
-
- '746'
|
1259
|
-
X-Content-Type-Options:
|
1260
|
-
- nosniff
|
1261
|
-
ETag:
|
1262
|
-
- '"3cee66a256148370b22fd69d04782ce8"'
|
1263
|
-
Cache-Control:
|
1264
|
-
- max-age=0, private, must-revalidate
|
1265
|
-
X-Request-Id:
|
1266
|
-
- d4614536-5db1-48ed-825e-1ae220046a7d
|
1267
|
-
X-Runtime:
|
1268
|
-
- '0.008393'
|
1269
|
-
Connection:
|
1270
|
-
- keep-alive
|
1271
|
-
Server:
|
1272
|
-
- thin
|
1273
|
-
body:
|
1274
|
-
encoding: UTF-8
|
1275
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/opponents","template":{"data":[{"name":"name","value":null},{"name":"contacts_name","value":null},{"name":"contacts_phone","value":null},{"name":"contacts_email","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"opponent_results","href":"http://localhost:3000/opponents_results"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/opponents"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
1276
|
-
http_version: '1.1'
|
1277
|
-
adapter_metadata:
|
1278
|
-
effective_url: http://localhost:3000/opponents?hmac_client_id=classic&hmac_nonce=c94f386b-6785-4a2e-8315-b1d0e692c736&hmac_timestamp=1432825400
|
1279
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1280
|
-
- request:
|
1281
|
-
method: get
|
1282
|
-
uri: http://localhost:3000/opponents_results?hmac_client_id=classic&hmac_nonce=ebd52758-a3cd-41cc-8985-ceae0a5af707&hmac_timestamp=1432825400
|
1283
|
-
body:
|
1284
|
-
encoding: US-ASCII
|
1285
|
-
string: ''
|
1286
|
-
headers:
|
1287
|
-
User-Agent:
|
1288
|
-
- Faraday v0.9.1
|
1289
|
-
X-Teamsnap-Hmac:
|
1290
|
-
- 188ab655b6123e0ca8a744d62dd5f7654f3792945f085bc6c8a80165a79e7040
|
1291
|
-
response:
|
1292
|
-
status:
|
1293
|
-
code: 200
|
1294
|
-
message: OK
|
1295
|
-
headers:
|
1296
|
-
Content-Type:
|
1297
|
-
- application/vnd.collection+json
|
1298
|
-
Content-Length:
|
1299
|
-
- '470'
|
1300
|
-
X-Content-Type-Options:
|
1301
|
-
- nosniff
|
1302
|
-
ETag:
|
1303
|
-
- '"aac2db452446c9914d02eb339c945eed"'
|
1304
|
-
Cache-Control:
|
1305
|
-
- max-age=0, private, must-revalidate
|
1306
|
-
X-Request-Id:
|
1307
|
-
- fb84513f-155f-4a1d-b4da-f28e2269f79c
|
1308
|
-
X-Runtime:
|
1309
|
-
- '0.008776'
|
1310
|
-
Connection:
|
1311
|
-
- keep-alive
|
1312
|
-
Server:
|
1313
|
-
- thin
|
1314
|
-
body:
|
1315
|
-
encoding: UTF-8
|
1316
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/opponents_results","links":[{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/opponents_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
1317
|
-
http_version: '1.1'
|
1318
|
-
adapter_metadata:
|
1319
|
-
effective_url: http://localhost:3000/opponents_results?hmac_client_id=classic&hmac_nonce=ebd52758-a3cd-41cc-8985-ceae0a5af707&hmac_timestamp=1432825400
|
1320
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1321
|
-
- request:
|
1322
|
-
method: get
|
1323
|
-
uri: http://localhost:3000/payment_notes?hmac_client_id=classic&hmac_nonce=bdcc3cbb-95c9-4555-b016-39f943b4bb34&hmac_timestamp=1432825400
|
1324
|
-
body:
|
1325
|
-
encoding: US-ASCII
|
1326
|
-
string: ''
|
1327
|
-
headers:
|
1328
|
-
User-Agent:
|
1329
|
-
- Faraday v0.9.1
|
1330
|
-
X-Teamsnap-Hmac:
|
1331
|
-
- 724aa0225b706b66f81da036df0e4fcfa8ac623cf4216840b489dce8a9758c51
|
1332
|
-
response:
|
1333
|
-
status:
|
1334
|
-
code: 200
|
1335
|
-
message: OK
|
1336
|
-
headers:
|
1337
|
-
Content-Type:
|
1338
|
-
- application/vnd.collection+json
|
1339
|
-
Content-Length:
|
1340
|
-
- '661'
|
1341
|
-
X-Content-Type-Options:
|
1342
|
-
- nosniff
|
1343
|
-
ETag:
|
1344
|
-
- '"303b619fa3dae6b526c5a33ffb7545b6"'
|
1345
|
-
Cache-Control:
|
1346
|
-
- max-age=0, private, must-revalidate
|
1347
|
-
X-Request-Id:
|
1348
|
-
- 74137ddd-f404-4f5a-a30c-6e723196452a
|
1349
|
-
X-Runtime:
|
1350
|
-
- '0.008281'
|
1351
|
-
Connection:
|
1352
|
-
- keep-alive
|
1353
|
-
Server:
|
1354
|
-
- thin
|
1355
|
-
body:
|
1356
|
-
encoding: UTF-8
|
1357
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/payment_notes","template":{"data":[{"name":"member_payment_id","value":null},{"name":"note","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_payment","href":"http://localhost:3000/member_payments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/payment_notes"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_notes/search","data":[{"name":"id","value":null},{"name":"member_payment_id","value":null},{"name":"team_id","value":null}]}]}}'
|
1358
|
-
http_version: '1.1'
|
1359
|
-
adapter_metadata:
|
1360
|
-
effective_url: http://localhost:3000/payment_notes?hmac_client_id=classic&hmac_nonce=bdcc3cbb-95c9-4555-b016-39f943b4bb34&hmac_timestamp=1432825400
|
1361
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1362
|
-
- request:
|
1363
|
-
method: get
|
1364
|
-
uri: http://localhost:3000/paypal_currencies?hmac_client_id=classic&hmac_nonce=3f46dddb-7ade-4459-9300-abffdc71c1ea&hmac_timestamp=1432825400
|
1365
|
-
body:
|
1366
|
-
encoding: US-ASCII
|
1367
|
-
string: ''
|
1368
|
-
headers:
|
1369
|
-
User-Agent:
|
1370
|
-
- Faraday v0.9.1
|
1371
|
-
X-Teamsnap-Hmac:
|
1372
|
-
- 6b87ebcef686b3d5f7644805dc94ac798399966b71c6fc4f507ce00576706061
|
1373
|
-
response:
|
1374
|
-
status:
|
1375
|
-
code: 200
|
1376
|
-
message: OK
|
1377
|
-
headers:
|
1378
|
-
Content-Type:
|
1379
|
-
- application/vnd.collection+json
|
1380
|
-
Content-Length:
|
1381
|
-
- '3452'
|
1382
|
-
X-Content-Type-Options:
|
1383
|
-
- nosniff
|
1384
|
-
ETag:
|
1385
|
-
- '"30703ef8b6936a1e973db2dd53635a59"'
|
1386
|
-
Cache-Control:
|
1387
|
-
- max-age=0, private, must-revalidate
|
1388
|
-
X-Request-Id:
|
1389
|
-
- a5122bdf-efba-47ce-b136-776bd25b5959
|
1390
|
-
X-Runtime:
|
1391
|
-
- '0.022922'
|
1392
|
-
Connection:
|
1393
|
-
- keep-alive
|
1394
|
-
Server:
|
1395
|
-
- thin
|
1396
|
-
body:
|
1397
|
-
encoding: ASCII-8BIT
|
1398
|
-
string: !binary |-
|
1399
|
-
eyJjb2xsZWN0aW9uIjp7InZlcnNpb24iOiIzLjcyLjAiLCJocmVmIjoiaHR0
|
1400
|
-
cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJyZW5jaWVzIiwibGlua3Mi
|
1401
|
-
Olt7InJlbCI6InJvb3QiLCJocmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAw
|
1402
|
-
LyJ9LHsicmVsIjoic2VsZiIsImhyZWYiOiJodHRwOi8vbG9jYWxob3N0OjMw
|
1403
|
-
MDAvcGF5cGFsX2N1cnJlbmNpZXMifV0sInF1ZXJpZXMiOlt7InJlbCI6InNl
|
1404
|
-
YXJjaCIsImhyZWYiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvcGF5cGFsX2N1
|
1405
|
-
cnJlbmNpZXMvc2VhcmNoIiwiZGF0YSI6W3sibmFtZSI6ImlkIiwidmFsdWUi
|
1406
|
-
Om51bGx9LHsibmFtZSI6InRlYW1faWQiLCJ2YWx1ZSI6bnVsbH1dfV0sIml0
|
1407
|
-
ZW1zIjpbeyJocmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9j
|
1408
|
-
dXJyZW5jaWVzLzEiLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6MX0s
|
1409
|
-
eyJuYW1lIjoibmFtZSIsInZhbHVlIjoiVS5TLiBEb2xsYXIifSx7Im5hbWUi
|
1410
|
-
OiJjb2RlIiwidmFsdWUiOiJVU0QifSx7Im5hbWUiOiJzeW1ib2wiLCJ2YWx1
|
1411
|
-
ZSI6IiQifSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9XX0seyJo
|
1412
|
-
cmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJyZW5jaWVz
|
1413
|
-
LzIiLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6Mn0seyJuYW1lIjoi
|
1414
|
-
bmFtZSIsInZhbHVlIjoiQ2FuYWRpYW4gRG9sbGFyIn0seyJuYW1lIjoiY29k
|
1415
|
-
ZSIsInZhbHVlIjoiQ0FEIn0seyJuYW1lIjoic3ltYm9sIiwidmFsdWUiOiJD
|
1416
|
-
JCJ9LHsibmFtZSI6ImNvdW50cnkiLCJ2YWx1ZSI6bnVsbH1dfSx7ImhyZWYi
|
1417
|
-
OiJodHRwOi8vbG9jYWxob3N0OjMwMDAvcGF5cGFsX2N1cnJlbmNpZXMvMyIs
|
1418
|
-
ImRhdGEiOlt7Im5hbWUiOiJpZCIsInZhbHVlIjozfSx7Im5hbWUiOiJuYW1l
|
1419
|
-
IiwidmFsdWUiOiJBdXN0cmFsaWFuIERvbGxhciJ9LHsibmFtZSI6ImNvZGUi
|
1420
|
-
LCJ2YWx1ZSI6IkFVRCJ9LHsibmFtZSI6InN5bWJvbCIsInZhbHVlIjoiQSQi
|
1421
|
-
fSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9XX0seyJocmVmIjoi
|
1422
|
-
aHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJyZW5jaWVzLzQiLCJk
|
1423
|
-
YXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6NH0seyJuYW1lIjoibmFtZSIs
|
1424
|
-
InZhbHVlIjoiQ3plY2ggS29ydW5hIn0seyJuYW1lIjoiY29kZSIsInZhbHVl
|
1425
|
-
IjoiQ1pLIn0seyJuYW1lIjoic3ltYm9sIiwidmFsdWUiOiJLxI0ifSx7Im5h
|
1426
|
-
bWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9XX0seyJocmVmIjoiaHR0cDov
|
1427
|
-
L2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJyZW5jaWVzLzUiLCJkYXRhIjpb
|
1428
|
-
eyJuYW1lIjoiaWQiLCJ2YWx1ZSI6NX0seyJuYW1lIjoibmFtZSIsInZhbHVl
|
1429
|
-
IjoiRGFuaXNoIEtyb25lIn0seyJuYW1lIjoiY29kZSIsInZhbHVlIjoiREtL
|
1430
|
-
In0seyJuYW1lIjoic3ltYm9sIiwidmFsdWUiOiJrciJ9LHsibmFtZSI6ImNv
|
1431
|
-
dW50cnkiLCJ2YWx1ZSI6bnVsbH1dfSx7ImhyZWYiOiJodHRwOi8vbG9jYWxo
|
1432
|
-
b3N0OjMwMDAvcGF5cGFsX2N1cnJlbmNpZXMvNiIsImRhdGEiOlt7Im5hbWUi
|
1433
|
-
OiJpZCIsInZhbHVlIjo2fSx7Im5hbWUiOiJuYW1lIiwidmFsdWUiOiJFdXJv
|
1434
|
-
In0seyJuYW1lIjoiY29kZSIsInZhbHVlIjoiRVVSIn0seyJuYW1lIjoic3lt
|
1435
|
-
Ym9sIiwidmFsdWUiOiLigqwifSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUi
|
1436
|
-
Om51bGx9XX0seyJocmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBh
|
1437
|
-
bF9jdXJyZW5jaWVzLzciLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6
|
1438
|
-
N30seyJuYW1lIjoibmFtZSIsInZhbHVlIjoiSG9uZyBLb25nIERvbGxhciJ9
|
1439
|
-
LHsibmFtZSI6ImNvZGUiLCJ2YWx1ZSI6IkhLRCJ9LHsibmFtZSI6InN5bWJv
|
1440
|
-
bCIsInZhbHVlIjoiSEskIn0seyJuYW1lIjoiY291bnRyeSIsInZhbHVlIjpu
|
1441
|
-
dWxsfV19LHsiaHJlZiI6Imh0dHA6Ly9sb2NhbGhvc3Q6MzAwMC9wYXlwYWxf
|
1442
|
-
Y3VycmVuY2llcy84IiwiZGF0YSI6W3sibmFtZSI6ImlkIiwidmFsdWUiOjh9
|
1443
|
-
LHsibmFtZSI6Im5hbWUiLCJ2YWx1ZSI6Ik5vcndlZ2lhbiBLcm9uZSJ9LHsi
|
1444
|
-
bmFtZSI6ImNvZGUiLCJ2YWx1ZSI6Ik5PSyJ9LHsibmFtZSI6InN5bWJvbCIs
|
1445
|
-
InZhbHVlIjoia3IifSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9
|
1446
|
-
XX0seyJocmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJy
|
1447
|
-
ZW5jaWVzLzkiLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6OX0seyJu
|
1448
|
-
YW1lIjoibmFtZSIsInZhbHVlIjoiTmV3IFplYWxhbmQgRG9sbGFyIn0seyJu
|
1449
|
-
YW1lIjoiY29kZSIsInZhbHVlIjoiTlpEIn0seyJuYW1lIjoic3ltYm9sIiwi
|
1450
|
-
dmFsdWUiOiJOWiQifSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9
|
1451
|
-
XX0seyJocmVmIjoiaHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJy
|
1452
|
-
ZW5jaWVzLzEwIiwiZGF0YSI6W3sibmFtZSI6ImlkIiwidmFsdWUiOjEwfSx7
|
1453
|
-
Im5hbWUiOiJuYW1lIiwidmFsdWUiOiJQb2xpc2ggWmxvdHkifSx7Im5hbWUi
|
1454
|
-
OiJjb2RlIiwidmFsdWUiOiJQTE4ifSx7Im5hbWUiOiJzeW1ib2wiLCJ2YWx1
|
1455
|
-
ZSI6InrFgiJ9LHsibmFtZSI6ImNvdW50cnkiLCJ2YWx1ZSI6bnVsbH1dfSx7
|
1456
|
-
ImhyZWYiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvcGF5cGFsX2N1cnJlbmNp
|
1457
|
-
ZXMvMTEiLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6MTF9LHsibmFt
|
1458
|
-
ZSI6Im5hbWUiLCJ2YWx1ZSI6IlBvdW5kIFN0ZXJsaW5nIn0seyJuYW1lIjoi
|
1459
|
-
Y29kZSIsInZhbHVlIjoiR0JQIn0seyJuYW1lIjoic3ltYm9sIiwidmFsdWUi
|
1460
|
-
OiLCoyJ9LHsibmFtZSI6ImNvdW50cnkiLCJ2YWx1ZSI6bnVsbH1dfSx7Imhy
|
1461
|
-
ZWYiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvcGF5cGFsX2N1cnJlbmNpZXMv
|
1462
|
-
MTIiLCJkYXRhIjpbeyJuYW1lIjoiaWQiLCJ2YWx1ZSI6MTJ9LHsibmFtZSI6
|
1463
|
-
Im5hbWUiLCJ2YWx1ZSI6IlNpbmdhcG9yZSBEb2xsYXIifSx7Im5hbWUiOiJj
|
1464
|
-
b2RlIiwidmFsdWUiOiJTR0QifSx7Im5hbWUiOiJzeW1ib2wiLCJ2YWx1ZSI6
|
1465
|
-
IlMkIn0seyJuYW1lIjoiY291bnRyeSIsInZhbHVlIjpudWxsfV19LHsiaHJl
|
1466
|
-
ZiI6Imh0dHA6Ly9sb2NhbGhvc3Q6MzAwMC9wYXlwYWxfY3VycmVuY2llcy8x
|
1467
|
-
MyIsImRhdGEiOlt7Im5hbWUiOiJpZCIsInZhbHVlIjoxM30seyJuYW1lIjoi
|
1468
|
-
bmFtZSIsInZhbHVlIjoiU3dlZGlzaCBLcm9uYSJ9LHsibmFtZSI6ImNvZGUi
|
1469
|
-
LCJ2YWx1ZSI6IlNFSyJ9LHsibmFtZSI6InN5bWJvbCIsInZhbHVlIjoia3Ii
|
1470
|
-
fSx7Im5hbWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9XX0seyJocmVmIjoi
|
1471
|
-
aHR0cDovL2xvY2FsaG9zdDozMDAwL3BheXBhbF9jdXJyZW5jaWVzLzE0Iiwi
|
1472
|
-
ZGF0YSI6W3sibmFtZSI6ImlkIiwidmFsdWUiOjE0fSx7Im5hbWUiOiJuYW1l
|
1473
|
-
IiwidmFsdWUiOiJTd2lzcyBGcmFuYyJ9LHsibmFtZSI6ImNvZGUiLCJ2YWx1
|
1474
|
-
ZSI6IkNIRiJ9LHsibmFtZSI6InN5bWJvbCIsInZhbHVlIjoiRnIifSx7Im5h
|
1475
|
-
bWUiOiJjb3VudHJ5IiwidmFsdWUiOm51bGx9XX1dfX0=
|
1476
|
-
http_version: '1.1'
|
1477
|
-
adapter_metadata:
|
1478
|
-
effective_url: http://localhost:3000/paypal_currencies?hmac_client_id=classic&hmac_nonce=3f46dddb-7ade-4459-9300-abffdc71c1ea&hmac_timestamp=1432825400
|
1479
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1480
|
-
- request:
|
1481
|
-
method: get
|
1482
|
-
uri: http://localhost:3000/public_features?hmac_client_id=classic&hmac_nonce=1bf5c045-3e26-4d9e-a5f3-a86647353d4a&hmac_timestamp=1432825400
|
1483
|
-
body:
|
1484
|
-
encoding: US-ASCII
|
1485
|
-
string: ''
|
1486
|
-
headers:
|
1487
|
-
User-Agent:
|
1488
|
-
- Faraday v0.9.1
|
1489
|
-
X-Teamsnap-Hmac:
|
1490
|
-
- 9f51847399820a08362338e7745e01b46e5170e332923e1aa17ba8cac69396a0
|
1491
|
-
response:
|
1492
|
-
status:
|
1493
|
-
code: 200
|
1494
|
-
message: OK
|
1495
|
-
headers:
|
1496
|
-
Content-Type:
|
1497
|
-
- application/vnd.collection+json
|
1498
|
-
Content-Length:
|
1499
|
-
- '193'
|
1500
|
-
X-Content-Type-Options:
|
1501
|
-
- nosniff
|
1502
|
-
ETag:
|
1503
|
-
- '"2fdae77a1b3b8380c845ffd0411e9e68"'
|
1504
|
-
Cache-Control:
|
1505
|
-
- max-age=0, private, must-revalidate
|
1506
|
-
X-Request-Id:
|
1507
|
-
- 0c212533-40d6-4c92-b58d-0ddfbbbb25d7
|
1508
|
-
X-Runtime:
|
1509
|
-
- '0.008598'
|
1510
|
-
Connection:
|
1511
|
-
- keep-alive
|
1512
|
-
Server:
|
1513
|
-
- thin
|
1514
|
-
body:
|
1515
|
-
encoding: UTF-8
|
1516
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/feature","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/public_features"}]}}'
|
1517
|
-
http_version: '1.1'
|
1518
|
-
adapter_metadata:
|
1519
|
-
effective_url: http://localhost:3000/public_features?hmac_client_id=classic&hmac_nonce=1bf5c045-3e26-4d9e-a5f3-a86647353d4a&hmac_timestamp=1432825400
|
1520
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1521
|
-
- request:
|
1522
|
-
method: get
|
1523
|
-
uri: http://localhost:3000/sponsors?hmac_client_id=classic&hmac_nonce=9e33ffab-da88-4a0e-aff4-6dff20ac4857&hmac_timestamp=1432825400
|
1524
|
-
body:
|
1525
|
-
encoding: US-ASCII
|
1526
|
-
string: ''
|
1527
|
-
headers:
|
1528
|
-
User-Agent:
|
1529
|
-
- Faraday v0.9.1
|
1530
|
-
X-Teamsnap-Hmac:
|
1531
|
-
- d2a864cde49993cd7fcac119d49575481264020b7de4672497f7504b48d96231
|
1532
|
-
response:
|
1533
|
-
status:
|
1534
|
-
code: 200
|
1535
|
-
message: OK
|
1536
|
-
headers:
|
1537
|
-
Content-Type:
|
1538
|
-
- application/vnd.collection+json
|
1539
|
-
Content-Length:
|
1540
|
-
- '919'
|
1541
|
-
X-Content-Type-Options:
|
1542
|
-
- nosniff
|
1543
|
-
ETag:
|
1544
|
-
- '"c8ce38a13a21051be2ec400f6d87e021"'
|
1545
|
-
Cache-Control:
|
1546
|
-
- max-age=0, private, must-revalidate
|
1547
|
-
X-Request-Id:
|
1548
|
-
- 0d142203-1bc4-41e9-8038-4485ac2f8c46
|
1549
|
-
X-Runtime:
|
1550
|
-
- '0.007988'
|
1551
|
-
Connection:
|
1552
|
-
- keep-alive
|
1553
|
-
Server:
|
1554
|
-
- thin
|
1555
|
-
body:
|
1556
|
-
encoding: UTF-8
|
1557
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/sponsors","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sponsors"}],"queries":[{"rel":"search","href":"http://localhost:3000/sponsors/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
|
1558
|
-
a sponsor logo.","data":[{"name":"sponsor_id","value":null},{"name":"file","value":null}]},{"rel":"remove_sponsor_logo","href":"http://localhost:3000/sponsors/remove_sponsor_logo","prompt":"translation
|
1559
|
-
missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}}'
|
1560
|
-
http_version: '1.1'
|
1561
|
-
adapter_metadata:
|
1562
|
-
effective_url: http://localhost:3000/sponsors?hmac_client_id=classic&hmac_nonce=9e33ffab-da88-4a0e-aff4-6dff20ac4857&hmac_timestamp=1432825400
|
1563
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1564
|
-
- request:
|
1565
|
-
method: get
|
1566
|
-
uri: http://localhost:3000/statistic_data?hmac_client_id=classic&hmac_nonce=f7bd9079-03a4-4342-b473-11a199367e7c&hmac_timestamp=1432825400
|
1567
|
-
body:
|
1568
|
-
encoding: US-ASCII
|
1569
|
-
string: ''
|
1570
|
-
headers:
|
1571
|
-
User-Agent:
|
1572
|
-
- Faraday v0.9.1
|
1573
|
-
X-Teamsnap-Hmac:
|
1574
|
-
- 3dfd7fe1d1bc33cdf7626cfbd63a6ffa6b0bd038db1e690dbe97239bee774e37
|
1575
|
-
response:
|
1576
|
-
status:
|
1577
|
-
code: 200
|
1578
|
-
message: OK
|
1579
|
-
headers:
|
1580
|
-
Content-Type:
|
1581
|
-
- application/vnd.collection+json
|
1582
|
-
Content-Length:
|
1583
|
-
- '726'
|
1584
|
-
X-Content-Type-Options:
|
1585
|
-
- nosniff
|
1586
|
-
ETag:
|
1587
|
-
- '"e70d101bc4e8d0bc85f646bba5a9c4e3"'
|
1588
|
-
Cache-Control:
|
1589
|
-
- max-age=0, private, must-revalidate
|
1590
|
-
X-Request-Id:
|
1591
|
-
- 92cf47a3-7360-4300-8e76-639c9ae10188
|
1592
|
-
X-Runtime:
|
1593
|
-
- '0.008262'
|
1594
|
-
Connection:
|
1595
|
-
- keep-alive
|
1596
|
-
Server:
|
1597
|
-
- thin
|
1598
|
-
body:
|
1599
|
-
encoding: UTF-8
|
1600
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/statistic_data","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_data"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_data/search","data":[{"name":"id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}]}}'
|
1601
|
-
http_version: '1.1'
|
1602
|
-
adapter_metadata:
|
1603
|
-
effective_url: http://localhost:3000/statistic_data?hmac_client_id=classic&hmac_nonce=f7bd9079-03a4-4342-b473-11a199367e7c&hmac_timestamp=1432825400
|
1604
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1605
|
-
- request:
|
1606
|
-
method: get
|
1607
|
-
uri: http://localhost:3000/statistic_groups?hmac_client_id=classic&hmac_nonce=9d935e8a-4dca-4615-ac0a-51773cdaec86&hmac_timestamp=1432825400
|
1608
|
-
body:
|
1609
|
-
encoding: US-ASCII
|
1610
|
-
string: ''
|
1611
|
-
headers:
|
1612
|
-
User-Agent:
|
1613
|
-
- Faraday v0.9.1
|
1614
|
-
X-Teamsnap-Hmac:
|
1615
|
-
- dabcab2fd741b8eefaf167b30d3cae53d4b25fee182ad2770ddf99cdf08fcb25
|
1616
|
-
response:
|
1617
|
-
status:
|
1618
|
-
code: 200
|
1619
|
-
message: OK
|
1620
|
-
headers:
|
1621
|
-
Content-Type:
|
1622
|
-
- application/vnd.collection+json
|
1623
|
-
Content-Length:
|
1624
|
-
- '548'
|
1625
|
-
X-Content-Type-Options:
|
1626
|
-
- nosniff
|
1627
|
-
ETag:
|
1628
|
-
- '"3d0717775bdb00933031cb1e2a8a4c8e"'
|
1629
|
-
Cache-Control:
|
1630
|
-
- max-age=0, private, must-revalidate
|
1631
|
-
X-Request-Id:
|
1632
|
-
- 83c5a06e-cd4e-4929-bbde-dba1d77664dc
|
1633
|
-
X-Runtime:
|
1634
|
-
- '0.008309'
|
1635
|
-
Connection:
|
1636
|
-
- keep-alive
|
1637
|
-
Server:
|
1638
|
-
- thin
|
1639
|
-
body:
|
1640
|
-
encoding: UTF-8
|
1641
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/statistic_groups","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null}]},"links":[{"rel":"statistics","href":"http://localhost:3000/teams"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
1642
|
-
http_version: '1.1'
|
1643
|
-
adapter_metadata:
|
1644
|
-
effective_url: http://localhost:3000/statistic_groups?hmac_client_id=classic&hmac_nonce=9d935e8a-4dca-4615-ac0a-51773cdaec86&hmac_timestamp=1432825400
|
1645
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1646
|
-
- request:
|
1647
|
-
method: get
|
1648
|
-
uri: http://localhost:3000/plans?hmac_client_id=classic&hmac_nonce=f8c81829-7292-4f6e-b5d0-78b104815917&hmac_timestamp=1432825400
|
1649
|
-
body:
|
1650
|
-
encoding: US-ASCII
|
1651
|
-
string: ''
|
1652
|
-
headers:
|
1653
|
-
User-Agent:
|
1654
|
-
- Faraday v0.9.1
|
1655
|
-
X-Teamsnap-Hmac:
|
1656
|
-
- d63e981460b7ffdee9077883b6ba5e3841178a94e770e17f84fc1aed086b8b20
|
1657
|
-
response:
|
1658
|
-
status:
|
1659
|
-
code: 200
|
1660
|
-
message: OK
|
1661
|
-
headers:
|
1662
|
-
Content-Type:
|
1663
|
-
- application/vnd.collection+json
|
1664
|
-
Content-Length:
|
1665
|
-
- '19198'
|
1666
|
-
X-Content-Type-Options:
|
1667
|
-
- nosniff
|
1668
|
-
ETag:
|
1669
|
-
- '"3aabfd9bb01d0f40631bf9ae19af6ae5"'
|
1670
|
-
Cache-Control:
|
1671
|
-
- max-age=0, private, must-revalidate
|
1672
|
-
X-Request-Id:
|
1673
|
-
- fa3dd2ae-e75f-4442-8e15-8ddfff91b96c
|
1674
|
-
X-Runtime:
|
1675
|
-
- '0.022829'
|
1676
|
-
Connection:
|
1677
|
-
- keep-alive
|
1678
|
-
Server:
|
1679
|
-
- thin
|
1680
|
-
body:
|
1681
|
-
encoding: UTF-8
|
1682
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/plans"}],"queries":[{"rel":"search","href":"http://localhost:3000/plans/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/plans/14","data":[{"name":"id","value":14},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_photos","value":false},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
1683
|
-
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}]},{"href":"http://localhost:3000/plans/17","data":[{"name":"id","value":17},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free
|
1684
|
-
for 21 days!"},{"name":"name","value":"Free 21 Day Trial"},{"name":"plan_type","value":"trial"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}]},{"href":"http://localhost:3000/plans/23","data":[{"name":"id","value":23},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_photos","value":false},{"name":"has_roster_photos","value":false},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Included"},{"name":"name","value":"TeamLink
|
1685
|
-
League Billing Plan"},{"name":"plan_type","value":"league"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}]},{"href":"http://localhost:3000/plans/24","data":[{"name":"id","value":24},{"name":"type","value":"plan"},{"name":"annual_price","value":59.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"monthly_price","value":7.99},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
1686
|
-
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":500}]},{"href":"http://localhost:3000/plans/25","data":[{"name":"id","value":25},{"name":"type","value":"plan"},{"name":"annual_price","value":84.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":10.99},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
1687
|
-
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}]},{"href":"http://localhost:3000/plans/26","data":[{"name":"id","value":26},{"name":"type","value":"plan"},{"name":"annual_price","value":129.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":15.99},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
1688
|
-
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}]},{"href":"http://localhost:3000/plans/28","data":[{"name":"id","value":28},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_photos","value":false},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
1689
|
-
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":0}]},{"href":"http://localhost:3000/plans/29","data":[{"name":"id","value":29},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
1690
|
-
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":500}]},{"href":"http://localhost:3000/plans/30","data":[{"name":"id","value":30},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
1691
|
-
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":129000}]},{"href":"http://localhost:3000/plans/31","data":[{"name":"id","value":31},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
1692
|
-
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":99000}]},{"href":"http://localhost:3000/plans/34","data":[{"name":"id","value":34},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_photos","value":false},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
1693
|
-
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}]},{"href":"http://localhost:3000/plans/35","data":[{"name":"id","value":35},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
1694
|
-
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":100}]},{"href":"http://localhost:3000/plans/36","data":[{"name":"id","value":36},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_photos","value":true},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
1695
|
-
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}]},{"href":"http://localhost:3000/plans/37","data":[{"name":"id","value":37},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_photos","value":false},{"name":"has_roster_photos","value":false},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
1696
|
-
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}]}]}}'
|
1697
|
-
http_version: '1.1'
|
1698
|
-
adapter_metadata:
|
1699
|
-
effective_url: http://localhost:3000/plans?hmac_client_id=classic&hmac_nonce=f8c81829-7292-4f6e-b5d0-78b104815917&hmac_timestamp=1432825400
|
1700
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1701
|
-
- request:
|
1702
|
-
method: get
|
1703
|
-
uri: http://localhost:3000/sms_gateways?hmac_client_id=classic&hmac_nonce=33db579c-d92c-4799-9404-c50789d37ee1&hmac_timestamp=1432825400
|
1704
|
-
body:
|
1705
|
-
encoding: US-ASCII
|
1706
|
-
string: ''
|
1707
|
-
headers:
|
1708
|
-
User-Agent:
|
1709
|
-
- Faraday v0.9.1
|
1710
|
-
X-Teamsnap-Hmac:
|
1711
|
-
- 9fe450969fa4ef5af3c888d147a833852a8255bd4dc22621612076ad07d7bbcc
|
1712
|
-
response:
|
1713
|
-
status:
|
1714
|
-
code: 200
|
1715
|
-
message: OK
|
1716
|
-
headers:
|
1717
|
-
Content-Type:
|
1718
|
-
- application/vnd.collection+json
|
1719
|
-
Content-Length:
|
1720
|
-
- '33044'
|
1721
|
-
X-Content-Type-Options:
|
1722
|
-
- nosniff
|
1723
|
-
ETag:
|
1724
|
-
- '"0953b69c12d96f5be1b9900711ac231a"'
|
1725
|
-
Cache-Control:
|
1726
|
-
- max-age=0, private, must-revalidate
|
1727
|
-
X-Request-Id:
|
1728
|
-
- 0e5844bb-112e-4612-af5e-47c354447a17
|
1729
|
-
X-Runtime:
|
1730
|
-
- '0.103801'
|
1731
|
-
Connection:
|
1732
|
-
- keep-alive
|
1733
|
-
Server:
|
1734
|
-
- thin
|
1735
|
-
body:
|
1736
|
-
encoding: UTF-8
|
1737
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/sms_gateways","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sms_gateways"}],"queries":[{"rel":"search","href":"http://localhost:3000/sms_gateways/search","data":[{"name":"id","value":null}]}],"items":[{"href":"http://localhost:3000/sms_gateways/acsalaska","data":[{"name":"id","value":"acsalaska"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.acsalaska.com"},{"name":"name","value":"ACS
|
1738
|
-
Alaska"}]},{"href":"http://localhost:3000/sms_gateways/aiowireless","data":[{"name":"id","value":"aiowireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.aiowireless.net"},{"name":"name","value":"AIO"}]},{"href":"http://localhost:3000/sms_gateways/alaska-digitel","data":[{"name":"id","value":"alaska-digitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.alaskadigitel.com"},{"name":"name","value":"Alaska
|
1739
|
-
Digitel"}]},{"href":"http://localhost:3000/sms_gateways/alltel","data":[{"name":"id","value":"alltel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.alltelwireless.com"},{"name":"name","value":"Alltel"}]},{"href":"http://localhost:3000/sms_gateways/ameritech","data":[{"name":"id","value":"ameritech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@paging.acswireless.com"},{"name":"name","value":"Ameritech"}]},{"href":"http://localhost:3000/sms_gateways/appalachian-wireless","data":[{"name":"id","value":"appalachian-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myawi.com"},{"name":"name","value":"Appalachian
|
1740
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/at&t","data":[{"name":"id","value":"at&t"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"AT&T"}]},{"href":"http://localhost:3000/sms_gateways/bell-atlantic","data":[{"name":"id","value":"bell-atlantic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.bam.com"},{"name":"name","value":"Bell
|
1741
|
-
Atlantic"}]},{"href":"http://localhost:3000/sms_gateways/bellsouthmobility","data":[{"name":"id","value":"bellsouthmobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blsdcs.net"},{"name":"name","value":"Bellsouth
|
1742
|
-
Mobility"}]},{"href":"http://localhost:3000/sms_gateways/bluegrass-cellular","data":[{"name":"id","value":"bluegrass-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.bluecell.com"},{"name":"name","value":"Bluegrass
|
1743
|
-
Cellular"}]},{"href":"http://localhost:3000/sms_gateways/blueskyfrog","data":[{"name":"id","value":"blueskyfrog"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blueskyfrog.com"},{"name":"name","value":"BlueSkyFrog"}]},{"href":"http://localhost:3000/sms_gateways/boost","data":[{"name":"id","value":"boost"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myboostmobile.com"},{"name":"name","value":"Boost
|
1744
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/carolina-west","data":[{"name":"id","value":"carolina-west"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cwwsms.com"},{"name":"name","value":"Carolina
|
1745
|
-
West"}]},{"href":"http://localhost:3000/sms_gateways/c-spire","data":[{"name":"id","value":"c-spire"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cspire1.com"},{"name":"name","value":"C-Spire"}]},{"href":"http://localhost:3000/sms_gateways/cellcom","data":[{"name":"id","value":"cellcom"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cellcom.quiktxt.com"},{"name":"name","value":"Cellcom"}]},{"href":"http://localhost:3000/sms_gateways/cellular1","data":[{"name":"id","value":"cellular1"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cellular1.net"},{"name":"name","value":"Cellular
|
1746
|
-
One"}]},{"href":"http://localhost:3000/sms_gateways/cellularoneaz","data":[{"name":"id","value":"cellularoneaz"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cellularoneaz.net"},{"name":"name","value":"CellularOne
|
1747
|
-
Arizona"}]},{"href":"http://localhost:3000/sms_gateways/cellularsouth","data":[{"name":"id","value":"cellularsouth"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@csouth1.com"},{"name":"name","value":"Cellular
|
1748
|
-
South"}]},{"href":"http://localhost:3000/sms_gateways/chat-mobility","data":[{"name":"id","value":"chat-mobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myc29.net"},{"name":"name","value":"Chat
|
1749
|
-
Mobility"}]},{"href":"http://localhost:3000/sms_gateways/cincinnati-bell","data":[{"name":"id","value":"cincinnati-bell"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gocbw.com"},{"name":"name","value":"Cincinnati
|
1750
|
-
Bell"}]},{"href":"http://localhost:3000/sms_gateways/cleartalk","data":[{"name":"id","value":"cleartalk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cleartalk.us"},{"name":"name","value":"ClearTalk"}]},{"href":"http://localhost:3000/sms_gateways/comcast","data":[{"name":"id","value":"comcast"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@comcastpcs.textmsg.com"},{"name":"name","value":"Comcast
|
1751
|
-
PCS"}]},{"href":"http://localhost:3000/sms_gateways/consumer_cellular","data":[{"name":"id","value":"consumer_cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Consumer
|
1752
|
-
Cellular"}]},{"href":"http://localhost:3000/sms_gateways/credo","data":[{"name":"id","value":"credo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Credo
|
1753
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/flash_wireless","data":[{"name":"id","value":"flash_wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@plspictures.com"},{"name":"name","value":"Flash
|
1754
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/gci","data":[{"name":"id","value":"gci"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.gci.net"},{"name":"name","value":"GCI
|
1755
|
-
(Alaska)"}]},{"href":"http://localhost:3000/sms_gateways/h2o","data":[{"name":"id","value":"h2o"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"h2o
|
1756
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/illinoisvalleycellular","data":[{"name":"id","value":"illinoisvalleycellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ivctext.com"},{"name":"name","value":"Illinois
|
1757
|
-
Valley Cellular"}]},{"href":"http://localhost:3000/sms_gateways/immix","data":[{"name":"id","value":"immix"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.immix.com"},{"name":"name","value":"Immix"}]},{"href":"http://localhost:3000/sms_gateways/inlandcellular","data":[{"name":"id","value":"inlandcellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@inlandlink.com"},{"name":"name","value":"Inland
|
1758
|
-
Cellular"}]},{"href":"http://localhost:3000/sms_gateways/iwireless","data":[{"name":"id","value":"iwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@iwirelesshometext.com"},{"name":"name","value":"I-Wireless"}]},{"href":"http://localhost:3000/sms_gateways/kajeet","data":[{"name":"id","value":"kajeet"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.kajeet.net"},{"name":"name","value":"kajeet"}]},{"href":"http://localhost:3000/sms_gateways/metropcs","data":[{"name":"id","value":"metropcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymetropcs.com"},{"name":"name","value":"Metro
|
1759
|
-
PCS"}]},{"href":"http://localhost:3000/sms_gateways/mta","data":[{"name":"id","value":"mta"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mtawireless.com"},{"name":"name","value":"mta"}]},{"href":"http://localhost:3000/sms_gateways/mmode","data":[{"name":"id","value":"mmode"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmode.com"},{"name":"name","value":"MMode"}]},{"href":"http://localhost:3000/sms_gateways/mobipcs","data":[{"name":"id","value":"mobipcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobipcs.net"},{"name":"name","value":"MobiPCS"}]},{"href":"http://localhost:3000/sms_gateways/net10","data":[{"name":"id","value":"net10"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"NET10
|
1760
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/nex-tech","data":[{"name":"id","value":"nex-tech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.ntwls.net"},{"name":"name","value":"Nex-Tech"}]},{"href":"http://localhost:3000/sms_gateways/nextel","data":[{"name":"id","value":"nextel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.nextel.com"},{"name":"name","value":"Nextel"}]},{"href":"http://localhost:3000/sms_gateways/northwestcell","data":[{"name":"id","value":"northwestcell"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"mynwmcell.com"},{"name":"name","value":"Northwest
|
1761
|
-
Cell"}]},{"href":"http://localhost:3000/sms_gateways/ntelos","data":[{"name":"id","value":"ntelos"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.ntelos.com"},{"name":"name","value":"NTelos"}]},{"href":"http://localhost:3000/sms_gateways/pageplus","data":[{"name":"id","value":"pageplus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"PagePlus"}]},{"href":"http://localhost:3000/sms_gateways/palmerwireless","data":[{"name":"id","value":"palmerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymobiletxt.com"},{"name":"name","value":"Palmer
|
1762
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/pioneerwireless","data":[{"name":"id","value":"pioneerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@zsend.com"},{"name":"name","value":"Pioneer
|
1763
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/powertel","data":[{"name":"id","value":"powertel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ptel.net"},{"name":"name","value":"Powertel"}]},{"href":"http://localhost:3000/sms_gateways/pscwireless","data":[{"name":"id","value":"pscwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.pscel.com"},{"name":"name","value":"PSC
|
1764
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/qwest","data":[{"name":"id","value":"qwest"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@qwestmp.com"},{"name":"name","value":"Qwest"}]},{"href":"http://localhost:3000/sms_gateways/redpocketmobile","data":[{"name":"id","value":"redpocketmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Red
|
1765
|
-
Pocket Mobile"}]},{"href":"http://localhost:3000/sms_gateways/republicwireless","data":[{"name":"id","value":"republicwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Republic
|
1766
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/solavei","data":[{"name":"id","value":"solavei"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"Solavei"}]},{"href":"http://localhost:3000/sms_gateways/southernlink","data":[{"name":"id","value":"southernlink"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@page.southernlinc.com"},{"name":"name","value":"Southern
|
1767
|
-
Link"}]},{"href":"http://localhost:3000/sms_gateways/sprint","data":[{"name":"id","value":"sprint"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Sprint
|
1768
|
-
PCS"}]},{"href":"http://localhost:3000/sms_gateways/sprint_pm","data":[{"name":"id","value":"sprint_pm"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pm.sprint.com"},{"name":"name","value":"Sprint
|
1769
|
-
PictureMail"}]},{"href":"http://localhost:3000/sms_gateways/straight_talk","data":[{"name":"id","value":"straight_talk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"Straight
|
1770
|
-
Talk"}]},{"href":"http://localhost:3000/sms_gateways/stratanetworks","data":[{"name":"id","value":"stratanetworks"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.rinawireless.com"},{"name":"name","value":"Strata
|
1771
|
-
Networks"}]},{"href":"http://localhost:3000/sms_gateways/suncom","data":[{"name":"id","value":"suncom"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tms.suncom.com"},{"name":"name","value":"Suncom"}]},{"href":"http://localhost:3000/sms_gateways/syringawireless","data":[{"name":"id","value":"syringawireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@rinasms.com"},{"name":"name","value":"Syringa
|
1772
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/t-mobile","data":[{"name":"id","value":"t-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"T-Mobile"}]},{"href":"http://localhost:3000/sms_gateways/telus-mobility","data":[{"name":"id","value":"telus-mobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
|
1773
|
-
Mobility"}]},{"href":"http://localhost:3000/sms_gateways/textfree","data":[{"name":"id","value":"textfree"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@textfree.us"},{"name":"name","value":"TextFree"}]},{"href":"http://localhost:3000/sms_gateways/textlocal","data":[{"name":"id","value":"textlocal"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txtlocal.com"},{"name":"name","value":"TextLocal"}]},{"href":"http://localhost:3000/sms_gateways/thumbcellular","data":[{"name":"id","value":"thumbcellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.thumbcellular.com"},{"name":"name","value":"Thumb
|
1774
|
-
Cellular"}]},{"href":"http://localhost:3000/sms_gateways/ting","data":[{"name":"id","value":"ting"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.ting.com"},{"name":"name","value":"Ting"}]},{"href":"http://localhost:3000/sms_gateways/tracfone","data":[{"name":"id","value":"tracfone"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmst5.tracfone.com"},{"name":"name","value":"Tracfone"}]},{"href":"http://localhost:3000/sms_gateways/union-wireless","data":[{"name":"id","value":"union-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@union-tel.com"},{"name":"name","value":"Union
|
1775
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/us-cellular","data":[{"name":"id","value":"us-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email.uscc.net"},{"name":"name","value":"US
|
1776
|
-
Cellular"}]},{"href":"http://localhost:3000/sms_gateways/viaero","data":[{"name":"id","value":"viaero"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@viaerosms.com"},{"name":"name","value":"Viaero"}]},{"href":"http://localhost:3000/sms_gateways/virgin","data":[{"name":"id","value":"virgin"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobl.com"},{"name":"name","value":"Virgin
|
1777
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/verizon","data":[{"name":"id","value":"verizon"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"Verizon
|
1778
|
-
Wireless"}]},{"href":"http://localhost:3000/sms_gateways/verizon-blackberry","data":[{"name":"id","value":"verizon-blackberry"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vzwpix.com"},{"name":"name","value":"Verizon
|
1779
|
-
- Blackberry Only"}]},{"href":"http://localhost:3000/sms_gateways/aliant-canada","data":[{"name":"id","value":"aliant-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@chat.wirefree.ca"},{"name":"name","value":"Aliant
|
1780
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/beeline-ua","data":[{"name":"id","value":"beeline-ua"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.beeline.ua"},{"name":"name","value":"Beeline"}]},{"href":"http://localhost:3000/sms_gateways/bellmobility-canada","data":[{"name":"id","value":"bellmobility-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.bell.ca"},{"name":"name","value":"Bell
|
1781
|
-
Mobility (Canada)"}]},{"href":"http://localhost:3000/sms_gateways/bpl-mobile","data":[{"name":"id","value":"bpl-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@bplmobile.com"},{"name":"name","value":"BPL
|
1782
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/claro-brazil","data":[{"name":"id","value":"claro-brazil"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@clarotorpedo.com.br"},{"name":"name","value":"Claro
|
1783
|
-
(Brazil)"}]},{"href":"http://localhost:3000/sms_gateways/claro-pr","data":[{"name":"id","value":"claro-pr"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtexto.com"},{"name":"name","value":"Claro
|
1784
|
-
(Puerto Rico)"}]},{"href":"http://localhost:3000/sms_gateways/csl1010-hong-kong","data":[{"name":"id","value":"csl1010-hong-kong"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@csl1010.com"},{"name":"name","value":"CSL
|
1785
|
-
1010 (Hong Kong)"}]},{"href":"http://localhost:3000/sms_gateways/claro-nicaragua","data":[{"name":"id","value":"claro-nicaragua"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ideasclaro-ca.com"},{"name":"name","value":"Claro
|
1786
|
-
(Nicaragua)"}]},{"href":"http://localhost:3000/sms_gateways/digicel","data":[{"name":"id","value":"digicel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@digitextjm.com"},{"name":"name","value":"Digicel"}]},{"href":"http://localhost:3000/sms_gateways/du-arab-emirates","data":[{"name":"id","value":"du-arab-emirates"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email2sms.ae"},{"name":"name","value":"Du
|
1787
|
-
(UAE)"}]},{"href":"http://localhost:3000/sms_gateways/e-plus-germany","data":[{"name":"id","value":"e-plus-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smsmail.eplus.de"},{"name":"name","value":"E-Plus
|
1788
|
-
(Germany)"}]},{"href":"http://localhost:3000/sms_gateways/etisalat-arab-emirates","data":[{"name":"id","value":"etisalat-arab-emirates"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email2sms.ae"},{"name":"name","value":"Etisalat
|
1789
|
-
(UAE)"}]},{"href":"http://localhost:3000/sms_gateways/fido-canada","data":[{"name":"id","value":"fido-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@fido.ca"},{"name":"name","value":"Fido"}]},{"href":"http://localhost:3000/sms_gateways/gts-infotel","data":[{"name":"id","value":"gts-infotel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@kerthan.gtsmessenger.com"},{"name":"name","value":"GTS-Infotel"}]},{"href":"http://localhost:3000/sms_gateways/koodo","data":[{"name":"id","value":"koodo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.koodomobile.com"},{"name":"name","value":"Koodo
|
1790
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/manitoba-mts","data":[{"name":"id","value":"manitoba-mts"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@text.mts.net"},{"name":"name","value":"MTS
|
1791
|
-
(Manitoba Telecom Systems)"}]},{"href":"http://localhost:3000/sms_gateways/mobinil-egypt","data":[{"name":"id","value":"mobinil-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobinil.net"},{"name":"name","value":"Mobinil"}]},{"href":"http://localhost:3000/sms_gateways/mobistar-belgium","data":[{"name":"id","value":"mobistar-belgium"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobistar.be"},{"name":"name","value":"Mobistar
|
1792
|
-
(Belgium)"}]},{"href":"http://localhost:3000/sms_gateways/mobitel","data":[{"name":"id","value":"mobitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mobitel.lk"},{"name":"name","value":"Mobitel"}]},{"href":"http://localhost:3000/sms_gateways/movistar-spain","data":[{"name":"id","value":"movistar-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@correo.movistar.net"},{"name":"name","value":"Movistar
|
1793
|
-
(Spain)"}]},{"href":"http://localhost:3000/sms_gateways/mtn-south-africa","data":[{"name":"id","value":"mtn-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@number.sms.co.za"},{"name":"name","value":"MTN
|
1794
|
-
(South Africa)"}]},{"href":"http://localhost:3000/sms_gateways/netcom-norway","data":[{"name":"id","value":"netcom-norway"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.netcom.no"},{"name":"name","value":"Netcom
|
1795
|
-
(Norway)"}]},{"href":"http://localhost:3000/sms_gateways/northerntel-canada","data":[{"name":"id","value":"northerntel-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.northerntelmobility.com"},{"name":"name","value":"NorthernTel
|
1796
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/o2-germany","data":[{"name":"id","value":"o2-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@o2online.de"},{"name":"name","value":"o2
|
1797
|
-
(Germany)"}]},{"href":"http://localhost:3000/sms_gateways/o2-uk","data":[{"name":"id","value":"o2-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmail.co.uk"},{"name":"name","value":"o2
|
1798
|
-
(UK)"}]},{"href":"http://localhost:3000/sms_gateways/orange-switzerland","data":[{"name":"id","value":"orange-switzerland"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orangemail.ch"},{"name":"name","value":"Orange
|
1799
|
-
(Switzerland)"}]},{"href":"http://localhost:3000/sms_gateways/orange-mumbai","data":[{"name":"id","value":"orange-mumbai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orangemail.co.in"},{"name":"name","value":"Orange
|
1800
|
-
(Mumbai)"}]},{"href":"http://localhost:3000/sms_gateways/orange-netherlands","data":[{"name":"id","value":"orange-netherlands"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.orange.nl"},{"name":"name","value":"Orange
|
1801
|
-
(Netherlands)"}]},{"href":"http://localhost:3000/sms_gateways/orange-uk","data":[{"name":"id","value":"orange-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orange.net"},{"name":"name","value":"Orange
|
1802
|
-
(UK)"}]},{"href":"http://localhost:3000/sms_gateways/platinum-tel","data":[{"name":"id","value":"platinum-tel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Platinum
|
1803
|
-
Tel"}]},{"href":"http://localhost:3000/sms_gateways/proximus","data":[{"name":"id","value":"proximus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smsonline.proximus.be"},{"name":"name","value":"Proximus
|
1804
|
-
(Belgium)"}]},{"href":"http://localhost:3000/sms_gateways/rogers-canada","data":[{"name":"id","value":"rogers-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.rogers.com"},{"name":"name","value":"Rogers
|
1805
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/sasktel-canada","data":[{"name":"id","value":"sasktel-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.sasktel.com"},{"name":"name","value":"SaskTel
|
1806
|
-
(canada)"}]},{"href":"http://localhost:3000/sms_gateways/sfr-france","data":[{"name":"id","value":"sfr-france"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sfr.fr"},{"name":"name","value":"SFR
|
1807
|
-
(France)"}]},{"href":"http://localhost:3000/sms_gateways/simply-mobile","data":[{"name":"id","value":"simply-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smtext.com"},{"name":"name","value":"Simply
|
1808
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/tele2","data":[{"name":"id","value":"tele2"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.tele2.se"},{"name":"name","value":"Tele2"}]},{"href":"http://localhost:3000/sms_gateways/telecom-mobile","data":[{"name":"id","value":"telecom-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@etxt.co.nz"},{"name":"name","value":"Telecom
|
1809
|
-
Mobile"}]},{"href":"http://localhost:3000/sms_gateways/telia","data":[{"name":"id","value":"telia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gsm1800.telia.dk"},{"name":"name","value":"Telia
|
1810
|
-
(Denmark)"}]},{"href":"http://localhost:3000/sms_gateways/telia_se","data":[{"name":"id","value":"telia_se"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.comviq.se"},{"name":"name","value":"Telia
|
1811
|
-
(Sweden)"}]},{"href":"http://localhost:3000/sms_gateways/tbay","data":[{"name":"id","value":"tbay"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tbayteltxt.net"},{"name":"name","value":"TBayTel
|
1812
|
-
Mobility (Canada)"}]},{"href":"http://localhost:3000/sms_gateways/t-mobile-austria","data":[{"name":"id","value":"t-mobile-austria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.t-mobile.at"},{"name":"name","value":"T-Mobile
|
1813
|
-
(Austria)"}]},{"href":"http://localhost:3000/sms_gateways/t-mobile-germany","data":[{"name":"id","value":"t-mobile-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@t-d1-sms.de"},{"name":"name","value":"T-Mobile
|
1814
|
-
(Germany)"}]},{"href":"http://localhost:3000/sms_gateways/t-mobile-netherlands","data":[{"name":"id","value":"t-mobile-netherlands"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gin.nl"},{"name":"name","value":"T-Mobile
|
1815
|
-
(Netherlands)"}]},{"href":"http://localhost:3000/sms_gateways/t-mobile-uk","data":[{"name":"id","value":"t-mobile-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@t-mobile.uk.net"},{"name":"name","value":"T-Mobile
|
1816
|
-
(UK)"}]},{"href":"http://localhost:3000/sms_gateways/telebec-canada","data":[{"name":"id","value":"telebec-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.telebecmobilite.com"},{"name":"name","value":"Telebec
|
1817
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/telefonica-spain","data":[{"name":"id","value":"telefonica-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@movistar.net"},{"name":"name","value":"Telefonica
|
1818
|
-
(Spain)"}]},{"href":"http://localhost:3000/sms_gateways/telefonica-czechrepublic","data":[{"name":"id","value":"telefonica-czechrepublic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cz.o2.com"},{"name":"name","value":"Telefonica
|
1819
|
-
(Czech Republic)"}]},{"href":"http://localhost:3000/sms_gateways/telenor","data":[{"name":"id","value":"telenor"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobilpost.com"},{"name":"name","value":"Telenor"}]},{"href":"http://localhost:3000/sms_gateways/telus-canada","data":[{"name":"id","value":"telus-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
|
1820
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/tim","data":[{"name":"id","value":"tim"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@timnet.com"},{"name":"name","value":"TIM
|
1821
|
-
(Italy)"}]},{"href":"http://localhost:3000/sms_gateways/three-italia","data":[{"name":"id","value":"three-italia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tre.it"},{"name":"name","value":"3
|
1822
|
-
Italia"}]},{"href":"http://localhost:3000/sms_gateways/videotron","data":[{"name":"id","value":"videotron"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@videotron.ca"},{"name":"name","value":"Videotron
|
1823
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/virgin-canada","data":[{"name":"id","value":"virgin-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobile.ca"},{"name":"name","value":"Virgin
|
1824
|
-
(Canada)"}]},{"href":"http://localhost:3000/sms_gateways/vodacom-south-africa","data":[{"name":"id","value":"vodacom-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@voda.co.za"},{"name":"name","value":"Vodacom
|
1825
|
-
(South Africa)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-germany","data":[{"name":"id","value":"vodafone-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone-sms.de"},{"name":"name","value":"Vodafone
|
1826
|
-
(Germany)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-egypt","data":[{"name":"id","value":"vodafone-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.com.eg"},{"name":"name","value":"Vodafone
|
1827
|
-
(Egypt)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-chuugoku","data":[{"name":"id","value":"vodafone-jp-chuugoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@n.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1828
|
-
(Japan - Chuugoku)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-hokkaido","data":[{"name":"id","value":"vodafone-jp-hokkaido"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@d.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1829
|
-
(Japan - Hokkaido)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-hokuriko","data":[{"name":"id","value":"vodafone-jp-hokuriko"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@r.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1830
|
-
(Japan - Hokuriko)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kansai","data":[{"name":"id","value":"vodafone-jp-kansai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1831
|
-
(Japan - Kansai)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-osaka","data":[{"name":"id","value":"vodafone-jp-osaka"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1832
|
-
(Japan - Osaka)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kanto","data":[{"name":"id","value":"vodafone-jp-kanto"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1833
|
-
(Japan - Kanto)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-koushin","data":[{"name":"id","value":"vodafone-jp-koushin"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1834
|
-
(Japan - Koushin)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-tokyo","data":[{"name":"id","value":"vodafone-jp-tokyo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1835
|
-
(Japan - Tokyo)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kyuushu","data":[{"name":"id","value":"vodafone-jp-kyuushu"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@q.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1836
|
-
(Japan - Kyuushu)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-okinawa","data":[{"name":"id","value":"vodafone-jp-okinawa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@q.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1837
|
-
(Japan - Okinawa)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-shikoku","data":[{"name":"id","value":"vodafone-jp-shikoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@s.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1838
|
-
(Japan - Shikoku)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-touhoku","data":[{"name":"id","value":"vodafone-jp-touhoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1839
|
-
(Japan - Touhoku)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-niigata","data":[{"name":"id","value":"vodafone-jp-niigata"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1840
|
-
(Japan - Niigata)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-toukai","data":[{"name":"id","value":"vodafone-jp-toukai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
1841
|
-
(Japan - Toukai)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-nz","data":[{"name":"id","value":"vodafone-nz"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.vodafone.net.nz"},{"name":"name","value":"Vodafone
|
1842
|
-
(New Zealand)"}]},{"href":"http://localhost:3000/sms_gateways/vodafone-spain","data":[{"name":"id","value":"vodafone-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.es"},{"name":"name","value":"Vodafone
|
1843
|
-
(Japan - Spain)"}]},{"href":"http://localhost:3000/sms_gateways/wind","data":[{"name":"id","value":"wind"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@wind.it"},{"name":"name","value":"Wind
|
1844
|
-
(Italy)"}]},{"href":"http://localhost:3000/sms_gateways/windmobile","data":[{"name":"id","value":"windmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.windmobile.ca"},{"name":"name","value":"Wind
|
1845
|
-
Mobile (Canada)"}]}]}}'
|
1846
|
-
http_version: '1.1'
|
1847
|
-
adapter_metadata:
|
1848
|
-
effective_url: http://localhost:3000/sms_gateways?hmac_client_id=classic&hmac_nonce=33db579c-d92c-4799-9404-c50789d37ee1&hmac_timestamp=1432825400
|
1849
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1850
|
-
- request:
|
1851
|
-
method: get
|
1852
|
-
uri: http://localhost:3000/sports?hmac_client_id=classic&hmac_nonce=f713bdc9-3501-4d5c-aa07-3ff4f061e6f3&hmac_timestamp=1432825400
|
1853
|
-
body:
|
1854
|
-
encoding: US-ASCII
|
1855
|
-
string: ''
|
1856
|
-
headers:
|
1857
|
-
User-Agent:
|
1858
|
-
- Faraday v0.9.1
|
1859
|
-
X-Teamsnap-Hmac:
|
1860
|
-
- 720e2632cd57671dd5e0cadb1b2fe091adeee3709e0fc1c6b00e28b21da35495
|
1861
|
-
response:
|
1862
|
-
status:
|
1863
|
-
code: 200
|
1864
|
-
message: OK
|
1865
|
-
headers:
|
1866
|
-
Content-Type:
|
1867
|
-
- application/vnd.collection+json
|
1868
|
-
Content-Length:
|
1869
|
-
- '44007'
|
1870
|
-
X-Content-Type-Options:
|
1871
|
-
- nosniff
|
1872
|
-
ETag:
|
1873
|
-
- '"d42026e9282fad9c54374ab7ce16fc58"'
|
1874
|
-
Cache-Control:
|
1875
|
-
- max-age=0, private, must-revalidate
|
1876
|
-
X-Request-Id:
|
1877
|
-
- 3d6cf929-9634-46d3-a12b-7efbfb8399f7
|
1878
|
-
X-Runtime:
|
1879
|
-
- '0.106297'
|
1880
|
-
Connection:
|
1881
|
-
- keep-alive
|
1882
|
-
Server:
|
1883
|
-
- thin
|
1884
|
-
body:
|
1885
|
-
encoding: UTF-8
|
1886
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sports"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/sports/1","data":[{"name":"id","value":1},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/2","data":[{"name":"id","value":2},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Soccer"},{"name":"overtime_abbrev","value":"AET"},{"name":"overtime_label","value":"Extra
|
1887
|
-
Time"},{"name":"shootout_abbrev","value":"PK"},{"name":"shootout_label","value":"Penalty
|
1888
|
-
Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/4","data":[{"name":"id","value":4},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/5","data":[{"name":"id","value":5},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Baseball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/6","data":[{"name":"id","value":6},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/7","data":[{"name":"id","value":7},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Football"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/8","data":[{"name":"id","value":8},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cricket"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/9","data":[{"name":"id","value":9},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
1889
|
-
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
1890
|
-
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/10","data":[{"name":"id","value":10},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/11","data":[{"name":"id","value":11},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wiffleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/13","data":[{"name":"id","value":13},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bowling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/14","data":[{"name":"id","value":14},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dodgeball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/15","data":[{"name":"id","value":15},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Field
|
1891
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/16","data":[{"name":"id","value":16},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ice
|
1892
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/17","data":[{"name":"id","value":17},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Inline
|
1893
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/18","data":[{"name":"id","value":18},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Kickball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/19","data":[{"name":"id","value":19},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Paintball"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/20","data":[{"name":"id","value":20},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Polo"},{"name":"overtime_abbrev","value":"SD"},{"name":"overtime_label","value":"Sudden
|
1894
|
-
Death"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/21","data":[{"name":"id","value":21},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rowing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/22","data":[{"name":"id","value":22},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ultimate"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/23","data":[{"name":"id","value":23},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Water
|
1895
|
-
Polo"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/24","data":[{"name":"id","value":24},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Other
|
1896
|
-
Sport"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/25","data":[{"name":"id","value":25},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dragon
|
1897
|
-
Boat"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/26","data":[{"name":"id","value":26},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Australian
|
1898
|
-
Football"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
1899
|
-
time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/27","data":[{"name":"id","value":27},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Badminton"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/28","data":[{"name":"id","value":28},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bandy"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/29","data":[{"name":"id","value":29},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bocce"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/30","data":[{"name":"id","value":30},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Broomball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/31","data":[{"name":"id","value":31},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cheerleading"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/32","data":[{"name":"id","value":32},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Chess"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/33","data":[{"name":"id","value":33},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Croquet"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/34","data":[{"name":"id","value":34},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Curling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/35","data":[{"name":"id","value":35},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/36","data":[{"name":"id","value":36},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Fencing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/37","data":[{"name":"id","value":37},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Foosball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/38","data":[{"name":"id","value":38},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Hurling"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
1900
|
-
Time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/39","data":[{"name":"id","value":39},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Indoor
|
1901
|
-
Soccer"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/40","data":[{"name":"id","value":40},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Netball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/41","data":[{"name":"id","value":41},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Running"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/42","data":[{"name":"id","value":42},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Swimming"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/43","data":[{"name":"id","value":43},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Tennis"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/44","data":[{"name":"id","value":44},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floorball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Extra
|
1902
|
-
Time"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/45","data":[{"name":"id","value":45},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Petanque"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/46","data":[{"name":"id","value":46},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":true},{"name":"name","value":"Golf"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Playoff"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/47","data":[{"name":"id","value":47},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sailing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/48","data":[{"name":"id","value":48},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Roller
|
1903
|
-
Derby"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/49","data":[{"name":"id","value":49},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wrestling"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/50","data":[{"name":"id","value":50},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ki-O-Rahi"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/51","data":[{"name":"id","value":51},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ringette"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/52","data":[{"name":"id","value":52},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Non-Sport
|
1904
|
-
Group"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/53","data":[{"name":"id","value":53},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Outrigger"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/54","data":[{"name":"id","value":54},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cow
|
1905
|
-
Tipping"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
1906
|
-
Tips"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/55","data":[{"name":"id","value":55},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Racquetball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/56","data":[{"name":"id","value":56},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Men"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/57","data":[{"name":"id","value":57},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Women"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/58","data":[{"name":"id","value":58},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Track
|
1907
|
-
And Field"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/59","data":[{"name":"id","value":59},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Archery"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/60","data":[{"name":"id","value":60},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floor
|
1908
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/61","data":[{"name":"id","value":61},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Slo-pitch"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/62","data":[{"name":"id","value":62},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Street
|
1909
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/63","data":[{"name":"id","value":63},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Pickleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/64","data":[{"name":"id","value":64},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
1910
|
-
Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/65","data":[{"name":"id","value":65},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sled
|
1911
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/66","data":[{"name":"id","value":66},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
1912
|
-
Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/67","data":[{"name":"id","value":67},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Quad
|
1913
|
-
Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
1914
|
-
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
1915
|
-
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/68","data":[{"name":"id","value":68},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Handcycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/69","data":[{"name":"id","value":69},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Adaptive
|
1916
|
-
Sports"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/70","data":[{"name":"id","value":70},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
|
1917
|
-
Country"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/71","data":[{"name":"id","value":71},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
|
1918
|
-
Country Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/72","data":[{"name":"id","value":72},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Alpine
|
1919
|
-
Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false}]},{"href":"http://localhost:3000/sports/73","data":[{"name":"id","value":73},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
1920
|
-
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/74","data":[{"name":"id","value":74},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
1921
|
-
Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]},{"href":"http://localhost:3000/sports/75","data":[{"name":"id","value":75},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
1922
|
-
Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true}]}]}}'
|
1923
|
-
http_version: '1.1'
|
1924
|
-
adapter_metadata:
|
1925
|
-
effective_url: http://localhost:3000/sports?hmac_client_id=classic&hmac_nonce=f713bdc9-3501-4d5c-aa07-3ff4f061e6f3&hmac_timestamp=1432825400
|
1926
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1927
|
-
- request:
|
1928
|
-
method: get
|
1929
|
-
uri: http://localhost:3000/statistics?hmac_client_id=classic&hmac_nonce=2f15c164-9b47-4b43-97b6-566bec799f90&hmac_timestamp=1432825400
|
1930
|
-
body:
|
1931
|
-
encoding: US-ASCII
|
1932
|
-
string: ''
|
1933
|
-
headers:
|
1934
|
-
User-Agent:
|
1935
|
-
- Faraday v0.9.1
|
1936
|
-
X-Teamsnap-Hmac:
|
1937
|
-
- 8a8d2b2c37403366dcc14054cb971e50c156b362e122da3a348438639b109bfe
|
1938
|
-
response:
|
1939
|
-
status:
|
1940
|
-
code: 200
|
1941
|
-
message: OK
|
1942
|
-
headers:
|
1943
|
-
Content-Type:
|
1944
|
-
- application/vnd.collection+json
|
1945
|
-
Content-Length:
|
1946
|
-
- '1038'
|
1947
|
-
X-Content-Type-Options:
|
1948
|
-
- nosniff
|
1949
|
-
ETag:
|
1950
|
-
- '"446a0ea2b932dbacdf5bfcd8203dd2d0"'
|
1951
|
-
Cache-Control:
|
1952
|
-
- max-age=0, private, must-revalidate
|
1953
|
-
X-Request-Id:
|
1954
|
-
- c76e17bd-2e37-48a6-b6fe-fed5836d5268
|
1955
|
-
X-Runtime:
|
1956
|
-
- '0.051462'
|
1957
|
-
Connection:
|
1958
|
-
- keep-alive
|
1959
|
-
Server:
|
1960
|
-
- thin
|
1961
|
-
body:
|
1962
|
-
encoding: UTF-8
|
1963
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/statistics","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"acronym","value":null},{"name":"formula","value":null},{"name":"precision","value":null},{"name":"is_rounded","value":null},{"name":"is_percentage","value":null},{"name":"has_zeros_displayed","value":null},{"name":"has_descending_order","value":null},{"name":"is_top_statistic","value":null},{"name":"is_private","value":null},{"name":"is_team_statistic","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistics"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistics/search","data":[{"name":"statistic_group_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
1964
|
-
http_version: '1.1'
|
1965
|
-
adapter_metadata:
|
1966
|
-
effective_url: http://localhost:3000/statistics?hmac_client_id=classic&hmac_nonce=2f15c164-9b47-4b43-97b6-566bec799f90&hmac_timestamp=1432825400
|
1967
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
1968
|
-
- request:
|
1969
|
-
method: get
|
1970
|
-
uri: http://localhost:3000/referrals?hmac_client_id=classic&hmac_nonce=8cfbf985-012a-4df6-8d6c-ef6e2cfd226f&hmac_timestamp=1432825400
|
1971
|
-
body:
|
1972
|
-
encoding: US-ASCII
|
1973
|
-
string: ''
|
1974
|
-
headers:
|
1975
|
-
User-Agent:
|
1976
|
-
- Faraday v0.9.1
|
1977
|
-
X-Teamsnap-Hmac:
|
1978
|
-
- e17243a95eca53b3aa714f8feb01b89f5b7bf4dc25f6416e98b3bd05e05c92e4
|
1979
|
-
response:
|
1980
|
-
status:
|
1981
|
-
code: 200
|
1982
|
-
message: OK
|
1983
|
-
headers:
|
1984
|
-
Content-Type:
|
1985
|
-
- application/vnd.collection+json
|
1986
|
-
Content-Length:
|
1987
|
-
- '957'
|
1988
|
-
X-Content-Type-Options:
|
1989
|
-
- nosniff
|
1990
|
-
ETag:
|
1991
|
-
- '"77ae40b7ec602a90fe0a7d4ef36a04a8"'
|
1992
|
-
Cache-Control:
|
1993
|
-
- max-age=0, private, must-revalidate
|
1994
|
-
X-Request-Id:
|
1995
|
-
- d009afe9-2f2c-408a-8c1e-8afabed6f94e
|
1996
|
-
X-Runtime:
|
1997
|
-
- '0.013106'
|
1998
|
-
Connection:
|
1999
|
-
- keep-alive
|
2000
|
-
Server:
|
2001
|
-
- thin
|
2002
|
-
body:
|
2003
|
-
encoding: UTF-8
|
2004
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/referrals","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/referrals"}],"template":{"data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]},"commands":[{"rel":"referral","href":"http://localhost:3000/referrals","prompt":"Referral","data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]}]}}'
|
2005
|
-
http_version: '1.1'
|
2006
|
-
adapter_metadata:
|
2007
|
-
effective_url: http://localhost:3000/referrals?hmac_client_id=classic&hmac_nonce=8cfbf985-012a-4df6-8d6c-ef6e2cfd226f&hmac_timestamp=1432825400
|
2008
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2009
|
-
- request:
|
2010
|
-
method: get
|
2011
|
-
uri: http://localhost:3000/team_fees?hmac_client_id=classic&hmac_nonce=343a9f7f-fd03-4ecf-9d9f-d6d8b09e1e03&hmac_timestamp=1432825400
|
2012
|
-
body:
|
2013
|
-
encoding: US-ASCII
|
2014
|
-
string: ''
|
2015
|
-
headers:
|
2016
|
-
User-Agent:
|
2017
|
-
- Faraday v0.9.1
|
2018
|
-
X-Teamsnap-Hmac:
|
2019
|
-
- df94282d9bd150d783008cdbaa475ec1f38ddc5f83d86d4c66050f715c9bae91
|
2020
|
-
response:
|
2021
|
-
status:
|
2022
|
-
code: 200
|
2023
|
-
message: OK
|
2024
|
-
headers:
|
2025
|
-
Content-Type:
|
2026
|
-
- application/vnd.collection+json
|
2027
|
-
Content-Length:
|
2028
|
-
- '610'
|
2029
|
-
X-Content-Type-Options:
|
2030
|
-
- nosniff
|
2031
|
-
ETag:
|
2032
|
-
- '"27ec2bc8aa8780acb109a0771f592f00"'
|
2033
|
-
Cache-Control:
|
2034
|
-
- max-age=0, private, must-revalidate
|
2035
|
-
X-Request-Id:
|
2036
|
-
- faa5e6d1-df73-4161-9284-f4f81d067290
|
2037
|
-
X-Runtime:
|
2038
|
-
- '0.010705'
|
2039
|
-
Connection:
|
2040
|
-
- keep-alive
|
2041
|
-
Server:
|
2042
|
-
- thin
|
2043
|
-
body:
|
2044
|
-
encoding: UTF-8
|
2045
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/team_fees","template":{"data":[{"name":"description","value":null},{"name":"amount","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_fees"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_fees/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
2046
|
-
http_version: '1.1'
|
2047
|
-
adapter_metadata:
|
2048
|
-
effective_url: http://localhost:3000/team_fees?hmac_client_id=classic&hmac_nonce=343a9f7f-fd03-4ecf-9d9f-d6d8b09e1e03&hmac_timestamp=1432825400
|
2049
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2050
|
-
- request:
|
2051
|
-
method: get
|
2052
|
-
uri: http://localhost:3000/teams?hmac_client_id=classic&hmac_nonce=0aa761c6-f74b-453c-a3ec-8d38a0300c4e&hmac_timestamp=1432825400
|
2053
|
-
body:
|
2054
|
-
encoding: US-ASCII
|
2055
|
-
string: ''
|
2056
|
-
headers:
|
2057
|
-
User-Agent:
|
2058
|
-
- Faraday v0.9.1
|
2059
|
-
X-Teamsnap-Hmac:
|
2060
|
-
- b2171fe0d061d4655f353b8c0be366f7d07392dce09191e37d1a2358776d58b1
|
2061
|
-
response:
|
2062
|
-
status:
|
2063
|
-
code: 200
|
2064
|
-
message: OK
|
2065
|
-
headers:
|
2066
|
-
Content-Type:
|
2067
|
-
- application/vnd.collection+json
|
2068
|
-
Content-Length:
|
2069
|
-
- '4664'
|
2070
|
-
X-Content-Type-Options:
|
2071
|
-
- nosniff
|
2072
|
-
ETag:
|
2073
|
-
- '"10b222b87130a2c02da859afbb9ad12c"'
|
2074
|
-
Cache-Control:
|
2075
|
-
- max-age=0, private, must-revalidate
|
2076
|
-
X-Request-Id:
|
2077
|
-
- d3704c45-b2fb-4286-bdc3-12657e9b92b7
|
2078
|
-
X-Runtime:
|
2079
|
-
- '0.011667'
|
2080
|
-
Connection:
|
2081
|
-
- keep-alive
|
2082
|
-
Server:
|
2083
|
-
- thin
|
2084
|
-
body:
|
2085
|
-
encoding: UTF-8
|
2086
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"events","href":"http://localhost:3000/events"},{"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":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"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":"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":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
|
2087
|
-
team members or contacts to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"member_id","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]},{"rel":"update_time_zone","href":"http://localhost:3000/teams/update_time_zone","prompt":"Update
|
2088
|
-
team''s time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]}]}}'
|
2089
|
-
http_version: '1.1'
|
2090
|
-
adapter_metadata:
|
2091
|
-
effective_url: http://localhost:3000/teams?hmac_client_id=classic&hmac_nonce=0aa761c6-f74b-453c-a3ec-8d38a0300c4e&hmac_timestamp=1432825400
|
2092
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2093
|
-
- request:
|
2094
|
-
method: get
|
2095
|
-
uri: http://localhost:3000/teams_paypal_preferences?hmac_client_id=classic&hmac_nonce=28ced9a7-8dcf-465d-9f98-a9a8d7bfb2b7&hmac_timestamp=1432825400
|
2096
|
-
body:
|
2097
|
-
encoding: US-ASCII
|
2098
|
-
string: ''
|
2099
|
-
headers:
|
2100
|
-
User-Agent:
|
2101
|
-
- Faraday v0.9.1
|
2102
|
-
X-Teamsnap-Hmac:
|
2103
|
-
- 9cf7bed349a648e1b60af170fa890d3e18ff8757bf16a61f9e095ce863ccaf73
|
2104
|
-
response:
|
2105
|
-
status:
|
2106
|
-
code: 200
|
2107
|
-
message: OK
|
2108
|
-
headers:
|
2109
|
-
Content-Type:
|
2110
|
-
- application/vnd.collection+json
|
2111
|
-
Content-Length:
|
2112
|
-
- '699'
|
2113
|
-
X-Content-Type-Options:
|
2114
|
-
- nosniff
|
2115
|
-
ETag:
|
2116
|
-
- '"19ef34daf0574cf25014d173eb50615b"'
|
2117
|
-
Cache-Control:
|
2118
|
-
- max-age=0, private, must-revalidate
|
2119
|
-
X-Request-Id:
|
2120
|
-
- 5c42eaca-600f-451f-8374-d473fcf9918d
|
2121
|
-
X-Runtime:
|
2122
|
-
- '0.010095'
|
2123
|
-
Connection:
|
2124
|
-
- keep-alive
|
2125
|
-
Server:
|
2126
|
-
- thin
|
2127
|
-
body:
|
2128
|
-
encoding: UTF-8
|
2129
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/teams_paypal_preferences","template":{"data":[{"name":"is_paypal_active","value":null},{"name":"is_paypal_allowed","value":null},{"name":"paypal_currency_id","value":null},{"name":"paypal_email","value":null},{"name":"paypal_first_name","value":null},{"name":"paypal_last_name","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_paypal_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_paypal_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
2130
|
-
http_version: '1.1'
|
2131
|
-
adapter_metadata:
|
2132
|
-
effective_url: http://localhost:3000/teams_paypal_preferences?hmac_client_id=classic&hmac_nonce=28ced9a7-8dcf-465d-9f98-a9a8d7bfb2b7&hmac_timestamp=1432825400
|
2133
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2134
|
-
- request:
|
2135
|
-
method: get
|
2136
|
-
uri: http://localhost:3000/teams_preferences?hmac_client_id=classic&hmac_nonce=38ea6c46-4649-4ca0-8235-858c9ba13845&hmac_timestamp=1432825400
|
2137
|
-
body:
|
2138
|
-
encoding: US-ASCII
|
2139
|
-
string: ''
|
2140
|
-
headers:
|
2141
|
-
User-Agent:
|
2142
|
-
- Faraday v0.9.1
|
2143
|
-
X-Teamsnap-Hmac:
|
2144
|
-
- c5310edca28f2a19f30aed5a33a301969f4449cceed56a365c1e18870fcb237b
|
2145
|
-
response:
|
2146
|
-
status:
|
2147
|
-
code: 200
|
2148
|
-
message: OK
|
2149
|
-
headers:
|
2150
|
-
Content-Type:
|
2151
|
-
- application/vnd.collection+json
|
2152
|
-
Content-Length:
|
2153
|
-
- '2895'
|
2154
|
-
X-Content-Type-Options:
|
2155
|
-
- nosniff
|
2156
|
-
ETag:
|
2157
|
-
- '"8bd6c9aa4a038a8dfc76c9113b787488"'
|
2158
|
-
Cache-Control:
|
2159
|
-
- max-age=0, private, must-revalidate
|
2160
|
-
X-Request-Id:
|
2161
|
-
- a8352291-791c-4bf6-ac8f-c4371c917d30
|
2162
|
-
X-Runtime:
|
2163
|
-
- '0.010236'
|
2164
|
-
Connection:
|
2165
|
-
- keep-alive
|
2166
|
-
Server:
|
2167
|
-
- thin
|
2168
|
-
body:
|
2169
|
-
encoding: UTF-8
|
2170
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/teams_preferences","template":{"data":[{"name":"age_group","value":null},{"name":"alternate_sport_name","value":null},{"name":"announcement_above_home_photo","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"assignments_show_tab","value":null},{"name":"availabilities_show_tab","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"files_show_tab","value":null},{"name":"gender","value":null},{"name":"global_uniform_away","value":null},{"name":"global_uniform_home","value":null},{"name":"global_use_international_date","value":null},{"name":"global_use_international_time","value":null},{"name":"hide_header","value":null},{"name":"introduction_text","value":null},{"name":"is_coed","value":null},{"name":"is_payments_private","value":null},{"name":"is_youth","value":null},{"name":"manager_default_availability","value":null},{"name":"marketplace_show_tab","value":null},{"name":"member_sort_order","value":null},{"name":"payments_ignore_non_players","value":null},{"name":"payments_show_tab","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_game","value":null},{"name":"skill_level","value":null},{"name":"share_availability_notes","value":null},{"name":"statistics_show_tab","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null},{"name":"tracked_items_ignore_non_players","value":null},{"name":"tracked_items_is_private","value":null},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_team_logo","href":"http://localhost:3000/teams_preferences/upload_team_logo","prompt":"Upload
|
2171
|
-
a team logo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_logo","href":"http://localhost:3000/teams_preferences/remove_team_logo","prompt":"Remove
|
2172
|
-
a team logo.","data":[{"name":"team_preferences_id","value":null}]},{"rel":"upload_team_photo","href":"http://localhost:3000/teams_preferences/upload_team_photo","prompt":"Upload
|
2173
|
-
a team photo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_photo","href":"http://localhost:3000/teams_preferences/remove_team_photo","prompt":"Remove
|
2174
|
-
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}}'
|
2175
|
-
http_version: '1.1'
|
2176
|
-
adapter_metadata:
|
2177
|
-
effective_url: http://localhost:3000/teams_preferences?hmac_client_id=classic&hmac_nonce=38ea6c46-4649-4ca0-8235-858c9ba13845&hmac_timestamp=1432825400
|
2178
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2179
|
-
- request:
|
2180
|
-
method: get
|
2181
|
-
uri: http://localhost:3000/teams_results?hmac_client_id=classic&hmac_nonce=fd6017ce-6227-41f2-8883-0502f9f72360&hmac_timestamp=1432825400
|
2182
|
-
body:
|
2183
|
-
encoding: US-ASCII
|
2184
|
-
string: ''
|
2185
|
-
headers:
|
2186
|
-
User-Agent:
|
2187
|
-
- Faraday v0.9.1
|
2188
|
-
X-Teamsnap-Hmac:
|
2189
|
-
- 84d053bed03f624fa07f3f712073703c9ed8ce916d057fe84a76035f4371c921
|
2190
|
-
response:
|
2191
|
-
status:
|
2192
|
-
code: 200
|
2193
|
-
message: OK
|
2194
|
-
headers:
|
2195
|
-
Content-Type:
|
2196
|
-
- application/vnd.collection+json
|
2197
|
-
Content-Length:
|
2198
|
-
- '398'
|
2199
|
-
X-Content-Type-Options:
|
2200
|
-
- nosniff
|
2201
|
-
ETag:
|
2202
|
-
- '"0ffdd1aaf4363bbb2512ef3f51ac9b32"'
|
2203
|
-
Cache-Control:
|
2204
|
-
- max-age=0, private, must-revalidate
|
2205
|
-
X-Request-Id:
|
2206
|
-
- 6b24b8ad-4a93-4ced-b6fc-07b8b797bc66
|
2207
|
-
X-Runtime:
|
2208
|
-
- '0.009132'
|
2209
|
-
Connection:
|
2210
|
-
- keep-alive
|
2211
|
-
Server:
|
2212
|
-
- thin
|
2213
|
-
body:
|
2214
|
-
encoding: UTF-8
|
2215
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/teams_results","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}}'
|
2216
|
-
http_version: '1.1'
|
2217
|
-
adapter_metadata:
|
2218
|
-
effective_url: http://localhost:3000/teams_results?hmac_client_id=classic&hmac_nonce=fd6017ce-6227-41f2-8883-0502f9f72360&hmac_timestamp=1432825400
|
2219
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2220
|
-
- request:
|
2221
|
-
method: get
|
2222
|
-
uri: http://localhost:3000/time_zones?hmac_client_id=classic&hmac_nonce=706f035e-35d6-450a-9432-d8b8ab28e2e9&hmac_timestamp=1432825400
|
2223
|
-
body:
|
2224
|
-
encoding: US-ASCII
|
2225
|
-
string: ''
|
2226
|
-
headers:
|
2227
|
-
User-Agent:
|
2228
|
-
- Faraday v0.9.1
|
2229
|
-
X-Teamsnap-Hmac:
|
2230
|
-
- fd1843dac2173db35543d2ccb4095a0b29ba5e7a4e1b59e9b97b8bcefd2082f6
|
2231
|
-
response:
|
2232
|
-
status:
|
2233
|
-
code: 200
|
2234
|
-
message: OK
|
2235
|
-
headers:
|
2236
|
-
Content-Type:
|
2237
|
-
- application/vnd.collection+json
|
2238
|
-
Content-Length:
|
2239
|
-
- '37830'
|
2240
|
-
X-Content-Type-Options:
|
2241
|
-
- nosniff
|
2242
|
-
ETag:
|
2243
|
-
- '"588a362523ea76b71c4625934116c324"'
|
2244
|
-
Cache-Control:
|
2245
|
-
- max-age=0, private, must-revalidate
|
2246
|
-
X-Request-Id:
|
2247
|
-
- 762c466f-944c-48b3-8c48-ff98672b52ec
|
2248
|
-
X-Runtime:
|
2249
|
-
- '0.164691'
|
22
|
+
- '6258'
|
2250
23
|
Connection:
|
2251
24
|
- keep-alive
|
2252
|
-
|
2253
|
-
-
|
2254
|
-
body:
|
2255
|
-
encoding: UTF-8
|
2256
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/time_zones"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/time_zones/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
|
2257
|
-
Samoa"},{"name":"iana_name","value":"Pacific/Pago_Pago"},{"name":"offset","value":"-11:00"}]},{"href":"http://localhost:3000/time_zones/international-date-line-west","data":[{"name":"id","value":"international-date-line-west"},{"name":"type","value":"TimeZone"},{"name":"description","value":"International
|
2258
|
-
Date Line West"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}]},{"href":"http://localhost:3000/time_zones/midway-island","data":[{"name":"id","value":"midway-island"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Midway
|
2259
|
-
Island"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}]},{"href":"http://localhost:3000/time_zones/hawaii","data":[{"name":"id","value":"hawaii"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hawaii"},{"name":"iana_name","value":"Pacific/Honolulu"},{"name":"offset","value":"-10:00"}]},{"href":"http://localhost:3000/time_zones/alaska","data":[{"name":"id","value":"alaska"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Alaska"},{"name":"iana_name","value":"America/Juneau"},{"name":"offset","value":"-09:00"}]},{"href":"http://localhost:3000/time_zones/pacific-time-us-canada","data":[{"name":"id","value":"pacific-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pacific
|
2260
|
-
Time (US & Canada)"},{"name":"iana_name","value":"America/Los_Angeles"},{"name":"offset","value":"-08:00"}]},{"href":"http://localhost:3000/time_zones/tijuana","data":[{"name":"id","value":"tijuana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tijuana"},{"name":"iana_name","value":"America/Tijuana"},{"name":"offset","value":"-08:00"}]},{"href":"http://localhost:3000/time_zones/arizona","data":[{"name":"id","value":"arizona"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Arizona"},{"name":"iana_name","value":"America/Phoenix"},{"name":"offset","value":"-07:00"}]},{"href":"http://localhost:3000/time_zones/chihuahua","data":[{"name":"id","value":"chihuahua"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chihuahua"},{"name":"iana_name","value":"America/Chihuahua"},{"name":"offset","value":"-07:00"}]},{"href":"http://localhost:3000/time_zones/mazatlan","data":[{"name":"id","value":"mazatlan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mazatlan"},{"name":"iana_name","value":"America/Mazatlan"},{"name":"offset","value":"-07:00"}]},{"href":"http://localhost:3000/time_zones/mountain-time-us-canada","data":[{"name":"id","value":"mountain-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mountain
|
2261
|
-
Time (US & Canada)"},{"name":"iana_name","value":"America/Denver"},{"name":"offset","value":"-07:00"}]},{"href":"http://localhost:3000/time_zones/central-america","data":[{"name":"id","value":"central-america"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Central
|
2262
|
-
America"},{"name":"iana_name","value":"America/Guatemala"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/central-time-us-canada","data":[{"name":"id","value":"central-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Central
|
2263
|
-
Time (US & Canada)"},{"name":"iana_name","value":"America/Chicago"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/guadalajara","data":[{"name":"id","value":"guadalajara"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Guadalajara"},{"name":"iana_name","value":"America/Mexico_City"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/mexico-city","data":[{"name":"id","value":"mexico-city"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mexico
|
2264
|
-
City"},{"name":"iana_name","value":"America/Mexico_City"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/monterrey","data":[{"name":"id","value":"monterrey"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monterrey"},{"name":"iana_name","value":"America/Monterrey"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/saskatchewan","data":[{"name":"id","value":"saskatchewan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Saskatchewan"},{"name":"iana_name","value":"America/Regina"},{"name":"offset","value":"-06:00"}]},{"href":"http://localhost:3000/time_zones/bogota","data":[{"name":"id","value":"bogota"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bogota"},{"name":"iana_name","value":"America/Bogota"},{"name":"offset","value":"-05:00"}]},{"href":"http://localhost:3000/time_zones/eastern-time-us-canada","data":[{"name":"id","value":"eastern-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Eastern
|
2265
|
-
Time (US & Canada)"},{"name":"iana_name","value":"America/New_York"},{"name":"offset","value":"-05:00"}]},{"href":"http://localhost:3000/time_zones/indiana-east","data":[{"name":"id","value":"indiana-east"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Indiana
|
2266
|
-
(East)"},{"name":"iana_name","value":"America/Indiana/Indianapolis"},{"name":"offset","value":"-05:00"}]},{"href":"http://localhost:3000/time_zones/lima","data":[{"name":"id","value":"lima"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lima"},{"name":"iana_name","value":"America/Lima"},{"name":"offset","value":"-05:00"}]},{"href":"http://localhost:3000/time_zones/quito","data":[{"name":"id","value":"quito"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Quito"},{"name":"iana_name","value":"America/Lima"},{"name":"offset","value":"-05:00"}]},{"href":"http://localhost:3000/time_zones/caracas","data":[{"name":"id","value":"caracas"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Caracas"},{"name":"iana_name","value":"America/Caracas"},{"name":"offset","value":"-04:30"}]},{"href":"http://localhost:3000/time_zones/atlantic-time-canada","data":[{"name":"id","value":"atlantic-time-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Atlantic
|
2267
|
-
Time (Canada)"},{"name":"iana_name","value":"America/Halifax"},{"name":"offset","value":"-04:00"}]},{"href":"http://localhost:3000/time_zones/georgetown","data":[{"name":"id","value":"georgetown"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Georgetown"},{"name":"iana_name","value":"America/Guyana"},{"name":"offset","value":"-04:00"}]},{"href":"http://localhost:3000/time_zones/la-paz","data":[{"name":"id","value":"la-paz"},{"name":"type","value":"TimeZone"},{"name":"description","value":"La
|
2268
|
-
Paz"},{"name":"iana_name","value":"America/La_Paz"},{"name":"offset","value":"-04:00"}]},{"href":"http://localhost:3000/time_zones/santiago","data":[{"name":"id","value":"santiago"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Santiago"},{"name":"iana_name","value":"America/Santiago"},{"name":"offset","value":"-04:00"}]},{"href":"http://localhost:3000/time_zones/newfoundland","data":[{"name":"id","value":"newfoundland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Newfoundland"},{"name":"iana_name","value":"America/St_Johns"},{"name":"offset","value":"-03:30"}]},{"href":"http://localhost:3000/time_zones/brasilia","data":[{"name":"id","value":"brasilia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brasilia"},{"name":"iana_name","value":"America/Sao_Paulo"},{"name":"offset","value":"-03:00"}]},{"href":"http://localhost:3000/time_zones/buenos-aires","data":[{"name":"id","value":"buenos-aires"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Buenos
|
2269
|
-
Aires"},{"name":"iana_name","value":"America/Argentina/Buenos_Aires"},{"name":"offset","value":"-03:00"}]},{"href":"http://localhost:3000/time_zones/greenland","data":[{"name":"id","value":"greenland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Greenland"},{"name":"iana_name","value":"America/Godthab"},{"name":"offset","value":"-03:00"}]},{"href":"http://localhost:3000/time_zones/montevideo","data":[{"name":"id","value":"montevideo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Montevideo"},{"name":"iana_name","value":"America/Montevideo"},{"name":"offset","value":"-03:00"}]},{"href":"http://localhost:3000/time_zones/mid-atlantic","data":[{"name":"id","value":"mid-atlantic"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mid-Atlantic"},{"name":"iana_name","value":"Atlantic/South_Georgia"},{"name":"offset","value":"-02:00"}]},{"href":"http://localhost:3000/time_zones/azores","data":[{"name":"id","value":"azores"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Azores"},{"name":"iana_name","value":"Atlantic/Azores"},{"name":"offset","value":"-01:00"}]},{"href":"http://localhost:3000/time_zones/cape-verde-is","data":[{"name":"id","value":"cape-verde-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cape
|
2270
|
-
Verde Is."},{"name":"iana_name","value":"Atlantic/Cape_Verde"},{"name":"offset","value":"-01:00"}]},{"href":"http://localhost:3000/time_zones/casablanca","data":[{"name":"id","value":"casablanca"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Casablanca"},{"name":"iana_name","value":"Africa/Casablanca"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/dublin","data":[{"name":"id","value":"dublin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dublin"},{"name":"iana_name","value":"Europe/Dublin"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/edinburgh","data":[{"name":"id","value":"edinburgh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Edinburgh"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/lisbon","data":[{"name":"id","value":"lisbon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lisbon"},{"name":"iana_name","value":"Europe/Lisbon"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/london","data":[{"name":"id","value":"london"},{"name":"type","value":"TimeZone"},{"name":"description","value":"London"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/monrovia","data":[{"name":"id","value":"monrovia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monrovia"},{"name":"iana_name","value":"Africa/Monrovia"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/utc","data":[{"name":"id","value":"utc"},{"name":"type","value":"TimeZone"},{"name":"description","value":"UTC"},{"name":"iana_name","value":"Etc/UTC"},{"name":"offset","value":"+00:00"}]},{"href":"http://localhost:3000/time_zones/amsterdam","data":[{"name":"id","value":"amsterdam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amsterdam"},{"name":"iana_name","value":"Europe/Amsterdam"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/belgrade","data":[{"name":"id","value":"belgrade"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Belgrade"},{"name":"iana_name","value":"Europe/Belgrade"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/berlin","data":[{"name":"id","value":"berlin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Berlin"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/bern","data":[{"name":"id","value":"bern"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bern"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/bratislava","data":[{"name":"id","value":"bratislava"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bratislava"},{"name":"iana_name","value":"Europe/Bratislava"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/brussels","data":[{"name":"id","value":"brussels"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brussels"},{"name":"iana_name","value":"Europe/Brussels"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/budapest","data":[{"name":"id","value":"budapest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Budapest"},{"name":"iana_name","value":"Europe/Budapest"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/copenhagen","data":[{"name":"id","value":"copenhagen"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Copenhagen"},{"name":"iana_name","value":"Europe/Copenhagen"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/ljubljana","data":[{"name":"id","value":"ljubljana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ljubljana"},{"name":"iana_name","value":"Europe/Ljubljana"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/madrid","data":[{"name":"id","value":"madrid"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Madrid"},{"name":"iana_name","value":"Europe/Madrid"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/paris","data":[{"name":"id","value":"paris"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Paris"},{"name":"iana_name","value":"Europe/Paris"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/prague","data":[{"name":"id","value":"prague"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Prague"},{"name":"iana_name","value":"Europe/Prague"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/rome","data":[{"name":"id","value":"rome"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rome"},{"name":"iana_name","value":"Europe/Rome"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/sarajevo","data":[{"name":"id","value":"sarajevo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sarajevo"},{"name":"iana_name","value":"Europe/Sarajevo"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/skopje","data":[{"name":"id","value":"skopje"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Skopje"},{"name":"iana_name","value":"Europe/Skopje"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/stockholm","data":[{"name":"id","value":"stockholm"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Stockholm"},{"name":"iana_name","value":"Europe/Stockholm"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/vienna","data":[{"name":"id","value":"vienna"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vienna"},{"name":"iana_name","value":"Europe/Vienna"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/warsaw","data":[{"name":"id","value":"warsaw"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Warsaw"},{"name":"iana_name","value":"Europe/Warsaw"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/west-central-africa","data":[{"name":"id","value":"west-central-africa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"West
|
2271
|
-
Central Africa"},{"name":"iana_name","value":"Africa/Algiers"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/zagreb","data":[{"name":"id","value":"zagreb"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Zagreb"},{"name":"iana_name","value":"Europe/Zagreb"},{"name":"offset","value":"+01:00"}]},{"href":"http://localhost:3000/time_zones/amman","data":[{"name":"id","value":"amman"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amman"},{"name":"iana_name","value":"Asia/Amman"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/athens","data":[{"name":"id","value":"athens"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Athens"},{"name":"iana_name","value":"Europe/Athens"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/bucharest","data":[{"name":"id","value":"bucharest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bucharest"},{"name":"iana_name","value":"Europe/Bucharest"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/cairo","data":[{"name":"id","value":"cairo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cairo"},{"name":"iana_name","value":"Africa/Cairo"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/harare","data":[{"name":"id","value":"harare"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Harare"},{"name":"iana_name","value":"Africa/Harare"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/helsinki","data":[{"name":"id","value":"helsinki"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Helsinki"},{"name":"iana_name","value":"Europe/Helsinki"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/istanbul","data":[{"name":"id","value":"istanbul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Istanbul"},{"name":"iana_name","value":"Europe/Istanbul"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/jerusalem","data":[{"name":"id","value":"jerusalem"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jerusalem"},{"name":"iana_name","value":"Asia/Jerusalem"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/kyiv","data":[{"name":"id","value":"kyiv"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kyiv"},{"name":"iana_name","value":"Europe/Kiev"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/pretoria","data":[{"name":"id","value":"pretoria"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pretoria"},{"name":"iana_name","value":"Africa/Johannesburg"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/riga","data":[{"name":"id","value":"riga"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riga"},{"name":"iana_name","value":"Europe/Riga"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/sofia","data":[{"name":"id","value":"sofia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sofia"},{"name":"iana_name","value":"Europe/Sofia"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/tallinn","data":[{"name":"id","value":"tallinn"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tallinn"},{"name":"iana_name","value":"Europe/Tallinn"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/vilnius","data":[{"name":"id","value":"vilnius"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vilnius"},{"name":"iana_name","value":"Europe/Vilnius"},{"name":"offset","value":"+02:00"}]},{"href":"http://localhost:3000/time_zones/baghdad","data":[{"name":"id","value":"baghdad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baghdad"},{"name":"iana_name","value":"Asia/Baghdad"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/kuwait","data":[{"name":"id","value":"kuwait"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuwait"},{"name":"iana_name","value":"Asia/Kuwait"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/minsk","data":[{"name":"id","value":"minsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Minsk"},{"name":"iana_name","value":"Europe/Minsk"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/moscow","data":[{"name":"id","value":"moscow"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Moscow"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/nairobi","data":[{"name":"id","value":"nairobi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nairobi"},{"name":"iana_name","value":"Africa/Nairobi"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/riyadh","data":[{"name":"id","value":"riyadh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riyadh"},{"name":"iana_name","value":"Asia/Riyadh"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/st-petersburg","data":[{"name":"id","value":"st-petersburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"St.
|
2272
|
-
Petersburg"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/volgograd","data":[{"name":"id","value":"volgograd"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Volgograd"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}]},{"href":"http://localhost:3000/time_zones/tehran","data":[{"name":"id","value":"tehran"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tehran"},{"name":"iana_name","value":"Asia/Tehran"},{"name":"offset","value":"+03:30"}]},{"href":"http://localhost:3000/time_zones/abu-dhabi","data":[{"name":"id","value":"abu-dhabi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Abu
|
2273
|
-
Dhabi"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}]},{"href":"http://localhost:3000/time_zones/baku","data":[{"name":"id","value":"baku"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baku"},{"name":"iana_name","value":"Asia/Baku"},{"name":"offset","value":"+04:00"}]},{"href":"http://localhost:3000/time_zones/muscat","data":[{"name":"id","value":"muscat"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Muscat"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}]},{"href":"http://localhost:3000/time_zones/tbilisi","data":[{"name":"id","value":"tbilisi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tbilisi"},{"name":"iana_name","value":"Asia/Tbilisi"},{"name":"offset","value":"+04:00"}]},{"href":"http://localhost:3000/time_zones/yerevan","data":[{"name":"id","value":"yerevan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yerevan"},{"name":"iana_name","value":"Asia/Yerevan"},{"name":"offset","value":"+04:00"}]},{"href":"http://localhost:3000/time_zones/kabul","data":[{"name":"id","value":"kabul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kabul"},{"name":"iana_name","value":"Asia/Kabul"},{"name":"offset","value":"+04:30"}]},{"href":"http://localhost:3000/time_zones/ekaterinburg","data":[{"name":"id","value":"ekaterinburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ekaterinburg"},{"name":"iana_name","value":"Asia/Yekaterinburg"},{"name":"offset","value":"+05:00"}]},{"href":"http://localhost:3000/time_zones/islamabad","data":[{"name":"id","value":"islamabad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Islamabad"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}]},{"href":"http://localhost:3000/time_zones/karachi","data":[{"name":"id","value":"karachi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Karachi"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}]},{"href":"http://localhost:3000/time_zones/tashkent","data":[{"name":"id","value":"tashkent"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tashkent"},{"name":"iana_name","value":"Asia/Tashkent"},{"name":"offset","value":"+05:00"}]},{"href":"http://localhost:3000/time_zones/chennai","data":[{"name":"id","value":"chennai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chennai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}]},{"href":"http://localhost:3000/time_zones/kolkata","data":[{"name":"id","value":"kolkata"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kolkata"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}]},{"href":"http://localhost:3000/time_zones/mumbai","data":[{"name":"id","value":"mumbai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mumbai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}]},{"href":"http://localhost:3000/time_zones/new-delhi","data":[{"name":"id","value":"new-delhi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
2274
|
-
Delhi"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}]},{"href":"http://localhost:3000/time_zones/sri-jayawardenepura","data":[{"name":"id","value":"sri-jayawardenepura"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sri
|
2275
|
-
Jayawardenepura"},{"name":"iana_name","value":"Asia/Colombo"},{"name":"offset","value":"+05:30"}]},{"href":"http://localhost:3000/time_zones/kathmandu","data":[{"name":"id","value":"kathmandu"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kathmandu"},{"name":"iana_name","value":"Asia/Kathmandu"},{"name":"offset","value":"+05:45"}]},{"href":"http://localhost:3000/time_zones/almaty","data":[{"name":"id","value":"almaty"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Almaty"},{"name":"iana_name","value":"Asia/Almaty"},{"name":"offset","value":"+06:00"}]},{"href":"http://localhost:3000/time_zones/astana","data":[{"name":"id","value":"astana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Astana"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}]},{"href":"http://localhost:3000/time_zones/dhaka","data":[{"name":"id","value":"dhaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dhaka"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}]},{"href":"http://localhost:3000/time_zones/novosibirsk","data":[{"name":"id","value":"novosibirsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Novosibirsk"},{"name":"iana_name","value":"Asia/Novosibirsk"},{"name":"offset","value":"+06:00"}]},{"href":"http://localhost:3000/time_zones/urumqi","data":[{"name":"id","value":"urumqi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Urumqi"},{"name":"iana_name","value":"Asia/Urumqi"},{"name":"offset","value":"+06:00"}]},{"href":"http://localhost:3000/time_zones/rangoon","data":[{"name":"id","value":"rangoon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rangoon"},{"name":"iana_name","value":"Asia/Rangoon"},{"name":"offset","value":"+06:30"}]},{"href":"http://localhost:3000/time_zones/bangkok","data":[{"name":"id","value":"bangkok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bangkok"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}]},{"href":"http://localhost:3000/time_zones/hanoi","data":[{"name":"id","value":"hanoi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hanoi"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}]},{"href":"http://localhost:3000/time_zones/jakarta","data":[{"name":"id","value":"jakarta"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jakarta"},{"name":"iana_name","value":"Asia/Jakarta"},{"name":"offset","value":"+07:00"}]},{"href":"http://localhost:3000/time_zones/krasnoyarsk","data":[{"name":"id","value":"krasnoyarsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Krasnoyarsk"},{"name":"iana_name","value":"Asia/Krasnoyarsk"},{"name":"offset","value":"+07:00"}]},{"href":"http://localhost:3000/time_zones/beijing","data":[{"name":"id","value":"beijing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Beijing"},{"name":"iana_name","value":"Asia/Shanghai"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/chongqing","data":[{"name":"id","value":"chongqing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chongqing"},{"name":"iana_name","value":"Asia/Chongqing"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/hong-kong","data":[{"name":"id","value":"hong-kong"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hong
|
2276
|
-
Kong"},{"name":"iana_name","value":"Asia/Hong_Kong"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/irkutsk","data":[{"name":"id","value":"irkutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Irkutsk"},{"name":"iana_name","value":"Asia/Irkutsk"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/kuala-lumpur","data":[{"name":"id","value":"kuala-lumpur"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuala
|
2277
|
-
Lumpur"},{"name":"iana_name","value":"Asia/Kuala_Lumpur"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/perth","data":[{"name":"id","value":"perth"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Perth"},{"name":"iana_name","value":"Australia/Perth"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/singapore","data":[{"name":"id","value":"singapore"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Singapore"},{"name":"iana_name","value":"Asia/Singapore"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/taipei","data":[{"name":"id","value":"taipei"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Taipei"},{"name":"iana_name","value":"Asia/Taipei"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/ulaanbaatar","data":[{"name":"id","value":"ulaanbaatar"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ulaanbaatar"},{"name":"iana_name","value":"Asia/Ulaanbaatar"},{"name":"offset","value":"+08:00"}]},{"href":"http://localhost:3000/time_zones/osaka","data":[{"name":"id","value":"osaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Osaka"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}]},{"href":"http://localhost:3000/time_zones/sapporo","data":[{"name":"id","value":"sapporo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sapporo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}]},{"href":"http://localhost:3000/time_zones/seoul","data":[{"name":"id","value":"seoul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Seoul"},{"name":"iana_name","value":"Asia/Seoul"},{"name":"offset","value":"+09:00"}]},{"href":"http://localhost:3000/time_zones/tokyo","data":[{"name":"id","value":"tokyo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokyo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}]},{"href":"http://localhost:3000/time_zones/yakutsk","data":[{"name":"id","value":"yakutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yakutsk"},{"name":"iana_name","value":"Asia/Yakutsk"},{"name":"offset","value":"+09:00"}]},{"href":"http://localhost:3000/time_zones/adelaide","data":[{"name":"id","value":"adelaide"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Adelaide"},{"name":"iana_name","value":"Australia/Adelaide"},{"name":"offset","value":"+09:30"}]},{"href":"http://localhost:3000/time_zones/darwin","data":[{"name":"id","value":"darwin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Darwin"},{"name":"iana_name","value":"Australia/Darwin"},{"name":"offset","value":"+09:30"}]},{"href":"http://localhost:3000/time_zones/brisbane","data":[{"name":"id","value":"brisbane"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brisbane"},{"name":"iana_name","value":"Australia/Brisbane"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/canberra","data":[{"name":"id","value":"canberra"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Canberra"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/guam","data":[{"name":"id","value":"guam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Guam"},{"name":"iana_name","value":"Pacific/Guam"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/hobart","data":[{"name":"id","value":"hobart"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hobart"},{"name":"iana_name","value":"Australia/Hobart"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/magadan","data":[{"name":"id","value":"magadan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Magadan"},{"name":"iana_name","value":"Asia/Magadan"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/melbourne","data":[{"name":"id","value":"melbourne"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Melbourne"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/port-moresby","data":[{"name":"id","value":"port-moresby"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Port
|
2278
|
-
Moresby"},{"name":"iana_name","value":"Pacific/Port_Moresby"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/sydney","data":[{"name":"id","value":"sydney"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sydney"},{"name":"iana_name","value":"Australia/Sydney"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/vladivostok","data":[{"name":"id","value":"vladivostok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vladivostok"},{"name":"iana_name","value":"Asia/Vladivostok"},{"name":"offset","value":"+10:00"}]},{"href":"http://localhost:3000/time_zones/new-caledonia","data":[{"name":"id","value":"new-caledonia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
2279
|
-
Caledonia"},{"name":"iana_name","value":"Pacific/Noumea"},{"name":"offset","value":"+11:00"}]},{"href":"http://localhost:3000/time_zones/solomon-is","data":[{"name":"id","value":"solomon-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Solomon
|
2280
|
-
Is."},{"name":"iana_name","value":"Pacific/Guadalcanal"},{"name":"offset","value":"+11:00"}]},{"href":"http://localhost:3000/time_zones/auckland","data":[{"name":"id","value":"auckland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Auckland"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}]},{"href":"http://localhost:3000/time_zones/fiji","data":[{"name":"id","value":"fiji"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Fiji"},{"name":"iana_name","value":"Pacific/Fiji"},{"name":"offset","value":"+12:00"}]},{"href":"http://localhost:3000/time_zones/kamchatka","data":[{"name":"id","value":"kamchatka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kamchatka"},{"name":"iana_name","value":"Asia/Kamchatka"},{"name":"offset","value":"+12:00"}]},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
|
2281
|
-
Is."},{"name":"iana_name","value":"Pacific/Majuro"},{"name":"offset","value":"+12:00"}]},{"href":"http://localhost:3000/time_zones/wellington","data":[{"name":"id","value":"wellington"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Wellington"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}]},{"href":"http://localhost:3000/time_zones/chatham-is","data":[{"name":"id","value":"chatham-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chatham
|
2282
|
-
Is."},{"name":"iana_name","value":"Pacific/Chatham"},{"name":"offset","value":"+12:45"}]},{"href":"http://localhost:3000/time_zones/nuku-alofa","data":[{"name":"id","value":"nuku-alofa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nuku''alofa"},{"name":"iana_name","value":"Pacific/Tongatapu"},{"name":"offset","value":"+13:00"}]},{"href":"http://localhost:3000/time_zones/samoa","data":[{"name":"id","value":"samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samoa"},{"name":"iana_name","value":"Pacific/Apia"},{"name":"offset","value":"+13:00"}]},{"href":"http://localhost:3000/time_zones/tokelau-is","data":[{"name":"id","value":"tokelau-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokelau
|
2283
|
-
Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}]}]}}'
|
2284
|
-
http_version: '1.1'
|
2285
|
-
adapter_metadata:
|
2286
|
-
effective_url: http://localhost:3000/time_zones?hmac_client_id=classic&hmac_nonce=706f035e-35d6-450a-9432-d8b8ab28e2e9&hmac_timestamp=1432825400
|
2287
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2288
|
-
- request:
|
2289
|
-
method: get
|
2290
|
-
uri: http://localhost:3000/tracked_item_statuses?hmac_client_id=classic&hmac_nonce=5ce058f1-9a42-4d63-a777-c42667955acb&hmac_timestamp=1432825400
|
2291
|
-
body:
|
2292
|
-
encoding: US-ASCII
|
2293
|
-
string: ''
|
2294
|
-
headers:
|
2295
|
-
User-Agent:
|
2296
|
-
- Faraday v0.9.1
|
2297
|
-
X-Teamsnap-Hmac:
|
2298
|
-
- bd8b1954f45f856b13579421064f76c5aee139d0fbf8e7c2c8250726b084a2fb
|
2299
|
-
response:
|
2300
|
-
status:
|
2301
|
-
code: 200
|
2302
|
-
message: OK
|
2303
|
-
headers:
|
2304
|
-
Content-Type:
|
2305
|
-
- application/vnd.collection+json
|
2306
|
-
Content-Length:
|
2307
|
-
- '752'
|
25
|
+
Status:
|
26
|
+
- 200 OK
|
2308
27
|
X-Content-Type-Options:
|
2309
28
|
- nosniff
|
2310
29
|
ETag:
|
2311
|
-
- '"
|
30
|
+
- '"61716cfe6933ec57dccbd212dba32d2b"'
|
2312
31
|
Cache-Control:
|
2313
32
|
- max-age=0, private, must-revalidate
|
2314
33
|
X-Request-Id:
|
2315
|
-
-
|
34
|
+
- e9111b49-6b32-448a-9b6a-561b9047a7d2
|
2316
35
|
X-Runtime:
|
2317
|
-
- '0.
|
2318
|
-
|
2319
|
-
-
|
36
|
+
- '0.392648'
|
37
|
+
X-Powered-By:
|
38
|
+
- Phusion Passenger 4.0.48
|
39
|
+
Date:
|
40
|
+
- Wed, 14 Oct 2015 02:09:49 GMT
|
2320
41
|
Server:
|
2321
|
-
-
|
42
|
+
- nginx/1.6.2 + Phusion Passenger 4.0.48
|
2322
43
|
body:
|
2323
44
|
encoding: UTF-8
|
2324
|
-
string: '{"collection":{"version":"3.
|
45
|
+
string: '{"collection":{"version":"3.119.0","href":"http://localhost:3000/","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"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_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"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_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":"events","href":"http://localhost:3000/events"},{"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":"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_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"referrals","href":"http://localhost:3000/referrals"},{"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_photos","href":"http://localhost:3000/tsl_photos"},{"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","data":[{"name":"team_id","value":null},{"name":"types","value":null}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]}]}}'
|
2325
46
|
http_version: '1.1'
|
2326
47
|
adapter_metadata:
|
2327
|
-
effective_url: http://localhost:3000
|
2328
|
-
recorded_at:
|
48
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=d31238ef-c4a2-4122-9677-64027510d3ac&hmac_timestamp=1444788588
|
49
|
+
recorded_at: Wed, 14 Oct 2015 02:09:49 GMT
|
2329
50
|
- request:
|
2330
51
|
method: get
|
2331
|
-
uri: http://localhost:3000/
|
52
|
+
uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=61023c18-4713-443b-ba72-327e12fd7467&hmac_timestamp=1444788589
|
2332
53
|
body:
|
2333
54
|
encoding: US-ASCII
|
2334
55
|
string: ''
|
2335
56
|
headers:
|
2336
57
|
User-Agent:
|
2337
|
-
- Faraday v0.9.
|
58
|
+
- Faraday v0.9.2
|
2338
59
|
X-Teamsnap-Hmac:
|
2339
|
-
-
|
60
|
+
- 7e910ce869c2300fcad04b30724247ddc29ca26a3d742c0905b52380f103b591
|
2340
61
|
response:
|
2341
62
|
status:
|
2342
63
|
code: 200
|
2343
64
|
message: OK
|
2344
65
|
headers:
|
2345
66
|
Content-Type:
|
2346
|
-
- application/
|
67
|
+
- application/json
|
2347
68
|
Content-Length:
|
2348
|
-
- '
|
2349
|
-
X-Content-Type-Options:
|
2350
|
-
- nosniff
|
2351
|
-
ETag:
|
2352
|
-
- '"bac15abc2c9c36d488f0d4ebe9402998"'
|
2353
|
-
Cache-Control:
|
2354
|
-
- max-age=0, private, must-revalidate
|
2355
|
-
X-Request-Id:
|
2356
|
-
- 77b4c30c-a950-44f0-819a-68f111e4a730
|
2357
|
-
X-Runtime:
|
2358
|
-
- '0.009147'
|
69
|
+
- '227105'
|
2359
70
|
Connection:
|
2360
71
|
- keep-alive
|
2361
|
-
|
2362
|
-
-
|
2363
|
-
body:
|
2364
|
-
encoding: UTF-8
|
2365
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/tsl_metadata","template":{"data":[{"name":"user_id","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_metadata"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null}]}]}}'
|
2366
|
-
http_version: '1.1'
|
2367
|
-
adapter_metadata:
|
2368
|
-
effective_url: http://localhost:3000/tsl_metadata?hmac_client_id=classic&hmac_nonce=c2b955a7-6511-42b5-8087-de397c4019ed&hmac_timestamp=1432825400
|
2369
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2370
|
-
- request:
|
2371
|
-
method: get
|
2372
|
-
uri: http://localhost:3000/team_public_sites?hmac_client_id=classic&hmac_nonce=0f981403-2a55-4537-8525-03cc41640224&hmac_timestamp=1432825400
|
2373
|
-
body:
|
2374
|
-
encoding: US-ASCII
|
2375
|
-
string: ''
|
2376
|
-
headers:
|
2377
|
-
User-Agent:
|
2378
|
-
- Faraday v0.9.1
|
2379
|
-
X-Teamsnap-Hmac:
|
2380
|
-
- 5438798f470826d0af9e9a06b8f8e17855390a51d41b0fef2e321243687d063c
|
2381
|
-
response:
|
2382
|
-
status:
|
2383
|
-
code: 200
|
2384
|
-
message: OK
|
2385
|
-
headers:
|
2386
|
-
Content-Type:
|
2387
|
-
- application/vnd.collection+json
|
2388
|
-
Content-Length:
|
2389
|
-
- '2017'
|
72
|
+
Status:
|
73
|
+
- 200 OK
|
2390
74
|
X-Content-Type-Options:
|
2391
75
|
- nosniff
|
2392
76
|
ETag:
|
2393
|
-
- '"
|
77
|
+
- '"3a60e5e4f50988fc13503ece3fcd5416"'
|
2394
78
|
Cache-Control:
|
2395
79
|
- max-age=0, private, must-revalidate
|
2396
80
|
X-Request-Id:
|
2397
|
-
-
|
81
|
+
- a02aba14-dde4-4a0c-a997-9f3465b093e3
|
2398
82
|
X-Runtime:
|
2399
|
-
- '0.
|
2400
|
-
|
2401
|
-
-
|
83
|
+
- '0.766031'
|
84
|
+
X-Powered-By:
|
85
|
+
- Phusion Passenger 4.0.48
|
86
|
+
Date:
|
87
|
+
- Wed, 14 Oct 2015 02:09:49 GMT
|
2402
88
|
Server:
|
2403
|
-
-
|
89
|
+
- nginx/1.6.2 + Phusion Passenger 4.0.48
|
2404
90
|
body:
|
2405
91
|
encoding: UTF-8
|
2406
|
-
string: '{"collection":{"version":"3.
|
92
|
+
string: '[{"collection":{"version":"3.119.0","href":"http://localhost:3000/","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"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_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"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_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":"events","href":"http://localhost:3000/events"},{"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":"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_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"referrals","href":"http://localhost:3000/referrals"},{"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_photos","href":"http://localhost:3000/tsl_photos"},{"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","data":[{"name":"team_id","value":null},{"name":"types","value":null}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//assignments"}],"queries":[{"rel":"search","href":"http://localhost:3000/assignments/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/availabilities","template":{"data":[{"name":"status_code","value":null},{"name":"notes","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"notes_author_member_id","value":null},{"name":"source","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"notes_author_member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//availabilities"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
|
93
|
+
all future unset availabilities to specified status_code for the specified
|
94
|
+
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_email_attachments","template":{"data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"caption","value":null},{"name":"file","value":null}]},"links":[{"rel":"broadcast_email","href":"http://localhost:3000/broadcast_emails"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_email_attachments"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_email_attachments/search","data":[{"name":"id","value":null},{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"upload_broadcast_email_attachment","href":"http://localhost:3000/broadcast_email_attachments/upload_broadcast_email_attachment","data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_emails","template":{"data":[{"name":"attachments","value":null},{"name":"body","value":null},{"name":"is_draft","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_emails"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_smses","template":{"data":[{"name":"body","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_smses"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_smses/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contacts","template":{"data":[{"name":"label","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"address_country","value":null},{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"hide_address","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"custom_field","href":"http://localhost:3000/custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"custom_field_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/custom_fields","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"kind","value":null},{"name":"options","value":null},{"name":"help_text","value":null}]},"links":[{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"league_custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"league_custom_field","href":"http://localhost:3000/league_custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//league_custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"division_id","value":null},{"name":"league_custom_field_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_custom_fields","links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"self","href":"http://localhost:3000//league_custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_locations","links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
|
95
|
+
a division member by the id of the team they are a commissioner of"},{"name":"user_id","value":null},{"name":"id","value":null}]}],"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_members"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_team_standings","template":{"data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"team_name","value":null},{"name":"team_url","value":null},{"name":"division_name","value":null},{"name":"wins","value":null},{"name":"losses","value":null},{"name":"ties","value":null},{"name":"overtime_losses","value":null},{"name":"standings_points","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_team_standings"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_team_standings/search","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/events","template":{"data":[{"name":"repeating_type_code","value":null},{"name":"is_game","value":null},{"name":"start_date","value":null},{"name":"is_tbd","value":null},{"name":"name","value":null},{"name":"label","value":null},{"name":"game_type_code","value":null},{"name":"icon_color","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"duration_in_minutes","value":null},{"name":"notes","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","value":null},{"name":"is_canceled","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_opponent","value":null},{"name":"notify_opponent_contacts_name","value":null},{"name":"notify_opponent_contacts_email","value":null},{"name":"notify_opponent_notes","value":null},{"name":"team_id","value":null},{"name":"division_location_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"repeating_until","value":null},{"name":"repeating_include","value":null},{"name":"time_zone","value":null},{"name":"browser_time_zone","value":null},{"name":"additional_location_details","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"location","href":"http://localhost:3000/locations"},{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//events"}],"queries":[{"rel":"search","href":"http://localhost:3000/events/search","data":[{"name":"team_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"started_after","value":null},{"name":"started_before","value":null},{"name":"id","value":null}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"send_availability_reminders","href":"http://localhost:3000/events/send_availability_reminders","prompt":"members_to_notify
|
96
|
+
= [member_id, member_id]","data":[{"name":"id","value":null},{"name":"members_to_notify","value":null},{"name":"notify_team_as_member_id","value":null}]},{"rel":"update_final_score","href":"http://localhost:3000/events/update_final_score","prompt":"Update
|
97
|
+
the final score for an event","data":[{"name":"id","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"results","value":null},{"name":"results_url","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forecasts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_posts","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null},{"name":"broadcast_to_team","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_posts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_posts/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_subscriptions","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_subscriptions"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_subscriptions/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_topics","template":{"data":[{"name":"title","value":null},{"name":"is_announcement","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_topics"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_topics/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//geocoded_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//league_registrant_documents"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_registrant_documents/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/locations","template":{"data":[{"name":"name","value":null},{"name":"url","value":null},{"name":"phone","value":null},{"name":"notes","value":null},{"name":"address","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_balances","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_balances"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_balances/search","data":[{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_files","template":{"data":[{"name":"member_id","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_files"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_files/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
|
98
|
+
a member file.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_links","template":{"data":[{"name":"member_id","value":null},{"name":"url","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_links"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_links/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_payments","template":{"data":[{"name":"amount_paid","value":null},{"name":"amount_due","value":null},{"name":"is_applicable","value":null},{"name":"member_id","value":null},{"name":"note","value":null},{"name":"team_fee_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_fee","href":"http://localhost:3000/team_fees"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_payments"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_payments/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_fee_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_statistics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null},{"name":"hide_address","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null}]},"links":[{"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_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"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":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"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_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//members"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/opponents","template":{"data":[{"name":"name","value":null},{"name":"contacts_name","value":null},{"name":"contacts_phone","value":null},{"name":"contacts_email","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"opponent_results","href":"http://localhost:3000/opponents_results"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//opponents"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/opponents_results","links":[{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//opponents_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/payment_notes","template":{"data":[{"name":"member_payment_id","value":null},{"name":"note","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_payment","href":"http://localhost:3000/member_payments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//payment_notes"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_notes/search","data":[{"name":"id","value":null},{"name":"member_payment_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/paypal_currencies","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//paypal_currencies"}],"queries":[{"rel":"search","href":"http://localhost:3000/paypal_currencies/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/paypal_currencies/1","data":[{"name":"id","value":1},{"name":"name","value":"U.S.
|
99
|
+
Dollar"},{"name":"code","value":"USD"},{"name":"symbol","value":"$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/2","data":[{"name":"id","value":2},{"name":"name","value":"Canadian
|
100
|
+
Dollar"},{"name":"code","value":"CAD"},{"name":"symbol","value":"C$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/3","data":[{"name":"id","value":3},{"name":"name","value":"Australian
|
101
|
+
Dollar"},{"name":"code","value":"AUD"},{"name":"symbol","value":"A$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/4","data":[{"name":"id","value":4},{"name":"name","value":"Czech
|
102
|
+
Koruna"},{"name":"code","value":"CZK"},{"name":"symbol","value":"Kč"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/5","data":[{"name":"id","value":5},{"name":"name","value":"Danish
|
103
|
+
Krone"},{"name":"code","value":"DKK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/6","data":[{"name":"id","value":6},{"name":"name","value":"Euro"},{"name":"code","value":"EUR"},{"name":"symbol","value":"€"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/7","data":[{"name":"id","value":7},{"name":"name","value":"Hong
|
104
|
+
Kong Dollar"},{"name":"code","value":"HKD"},{"name":"symbol","value":"HK$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/8","data":[{"name":"id","value":8},{"name":"name","value":"Norwegian
|
105
|
+
Krone"},{"name":"code","value":"NOK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/9","data":[{"name":"id","value":9},{"name":"name","value":"New
|
106
|
+
Zealand Dollar"},{"name":"code","value":"NZD"},{"name":"symbol","value":"NZ$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/10","data":[{"name":"id","value":10},{"name":"name","value":"Polish
|
107
|
+
Zloty"},{"name":"code","value":"PLN"},{"name":"symbol","value":"zł"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/11","data":[{"name":"id","value":11},{"name":"name","value":"Pound
|
108
|
+
Sterling"},{"name":"code","value":"GBP"},{"name":"symbol","value":"£"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/12","data":[{"name":"id","value":12},{"name":"name","value":"Singapore
|
109
|
+
Dollar"},{"name":"code","value":"SGD"},{"name":"symbol","value":"S$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/13","data":[{"name":"id","value":13},{"name":"name","value":"Swedish
|
110
|
+
Krona"},{"name":"code","value":"SEK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/14","data":[{"name":"id","value":14},{"name":"name","value":"Swiss
|
111
|
+
Franc"},{"name":"code","value":"CHF"},{"name":"symbol","value":"Fr"},{"name":"country","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//plans"}],"queries":[{"rel":"search","href":"http://localhost:3000/plans/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]},{"rel":"all","href":"http://localhost:3000/plans/all","prompt":"Returns
|
112
|
+
all active and inactive plans"}],"items":[{"href":"http://localhost:3000/plans/14","data":[{"name":"id","value":14},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
113
|
+
is deprecated and will be removed in a future version, use has_team_media
|
114
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
115
|
+
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}],"rel":"plan-14"},{"href":"http://localhost:3000/plans/17","data":[{"name":"id","value":17},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
116
|
+
is deprecated and will be removed in a future version, use has_team_media
|
117
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free
|
118
|
+
for 21 days!"},{"name":"name","value":"Free 21 Day Trial"},{"name":"plan_type","value":"trial"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-17"},{"href":"http://localhost:3000/plans/23","data":[{"name":"id","value":23},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
119
|
+
is deprecated and will be removed in a future version, use has_team_media
|
120
|
+
instead."},{"name":"has_roster_photos","value":false},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Included"},{"name":"name","value":"TeamLink
|
121
|
+
League Billing Plan"},{"name":"plan_type","value":"league"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}],"rel":"plan-23"},{"href":"http://localhost:3000/plans/24","data":[{"name":"id","value":24},{"name":"type","value":"plan"},{"name":"annual_price","value":59.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
122
|
+
is deprecated and will be removed in a future version, use has_team_media
|
123
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":7.99},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
124
|
+
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":500}],"rel":"plan-24"},{"href":"http://localhost:3000/plans/25","data":[{"name":"id","value":25},{"name":"type","value":"plan"},{"name":"annual_price","value":84.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
125
|
+
is deprecated and will be removed in a future version, use has_team_media
|
126
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":10.99},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
127
|
+
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-25"},{"href":"http://localhost:3000/plans/26","data":[{"name":"id","value":26},{"name":"type","value":"plan"},{"name":"annual_price","value":129.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
128
|
+
is deprecated and will be removed in a future version, use has_team_media
|
129
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":15.99},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
130
|
+
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-26"},{"href":"http://localhost:3000/plans/28","data":[{"name":"id","value":28},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
131
|
+
is deprecated and will be removed in a future version, use has_team_media
|
132
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
133
|
+
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":0}],"rel":"plan-28"},{"href":"http://localhost:3000/plans/29","data":[{"name":"id","value":29},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
134
|
+
is deprecated and will be removed in a future version, use has_team_media
|
135
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
136
|
+
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":500}],"rel":"plan-29"},{"href":"http://localhost:3000/plans/30","data":[{"name":"id","value":30},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
137
|
+
is deprecated and will be removed in a future version, use has_team_media
|
138
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
139
|
+
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":129000}],"rel":"plan-30"},{"href":"http://localhost:3000/plans/31","data":[{"name":"id","value":31},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
140
|
+
is deprecated and will be removed in a future version, use has_team_media
|
141
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
142
|
+
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"iOS"},{"name":"platform_version","value":"2.3.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-31"},{"href":"http://localhost:3000/plans/34","data":[{"name":"id","value":34},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
143
|
+
is deprecated and will be removed in a future version, use has_team_media
|
144
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
145
|
+
Plan"},{"name":"plan_type","value":"free"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":0}],"rel":"plan-34"},{"href":"http://localhost:3000/plans/35","data":[{"name":"id","value":35},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
146
|
+
is deprecated and will be removed in a future version, use has_team_media
|
147
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
|
148
|
+
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":100}],"rel":"plan-35"},{"href":"http://localhost:3000/plans/36","data":[{"name":"id","value":36},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
|
149
|
+
is deprecated and will be removed in a future version, use has_team_media
|
150
|
+
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
|
151
|
+
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-36"},{"href":"http://localhost:3000/plans/37","data":[{"name":"id","value":37},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
152
|
+
is deprecated and will be removed in a future version, use has_team_media
|
153
|
+
instead."},{"name":"has_roster_photos","value":false},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
|
154
|
+
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-37"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/public_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//public_features"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sms_gateways","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sms_gateways"}],"queries":[{"rel":"search","href":"http://localhost:3000/sms_gateways/search","data":[{"name":"id","value":null}]}],"items":[{"href":"http://localhost:3000/sms_gateways/acsalaska","data":[{"name":"id","value":"acsalaska"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.acsalaska.com"},{"name":"name","value":"ACS
|
155
|
+
Alaska"}],"rel":"SmsGateway-acsalaska"},{"href":"http://localhost:3000/sms_gateways/aiowireless","data":[{"name":"id","value":"aiowireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.aiowireless.net"},{"name":"name","value":"AIO"}],"rel":"SmsGateway-aiowireless"},{"href":"http://localhost:3000/sms_gateways/alaska-digitel","data":[{"name":"id","value":"alaska-digitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.alaskadigitel.com"},{"name":"name","value":"Alaska
|
156
|
+
Digitel"}],"rel":"SmsGateway-alaska-digitel"},{"href":"http://localhost:3000/sms_gateways/alltel","data":[{"name":"id","value":"alltel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.alltelwireless.com"},{"name":"name","value":"Alltel"}],"rel":"SmsGateway-alltel"},{"href":"http://localhost:3000/sms_gateways/ameritech","data":[{"name":"id","value":"ameritech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@paging.acswireless.com"},{"name":"name","value":"Ameritech"}],"rel":"SmsGateway-ameritech"},{"href":"http://localhost:3000/sms_gateways/appalachian-wireless","data":[{"name":"id","value":"appalachian-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@awsms.com"},{"name":"name","value":"Appalachian
|
157
|
+
Wireless"}],"rel":"SmsGateway-appalachian-wireless"},{"href":"http://localhost:3000/sms_gateways/at&t","data":[{"name":"id","value":"at&t"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"AT&T"}],"rel":"SmsGateway-at&t"},{"href":"http://localhost:3000/sms_gateways/bell-atlantic","data":[{"name":"id","value":"bell-atlantic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.bam.com"},{"name":"name","value":"Bell
|
158
|
+
Atlantic"}],"rel":"SmsGateway-bell-atlantic"},{"href":"http://localhost:3000/sms_gateways/bellsouthmobility","data":[{"name":"id","value":"bellsouthmobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blsdcs.net"},{"name":"name","value":"Bellsouth
|
159
|
+
Mobility"}],"rel":"SmsGateway-bellsouthmobility"},{"href":"http://localhost:3000/sms_gateways/bluegrass-cellular","data":[{"name":"id","value":"bluegrass-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.bluecell.com"},{"name":"name","value":"Bluegrass
|
160
|
+
Cellular"}],"rel":"SmsGateway-bluegrass-cellular"},{"href":"http://localhost:3000/sms_gateways/blueskyfrog","data":[{"name":"id","value":"blueskyfrog"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blueskyfrog.com"},{"name":"name","value":"BlueSkyFrog"}],"rel":"SmsGateway-blueskyfrog"},{"href":"http://localhost:3000/sms_gateways/boost","data":[{"name":"id","value":"boost"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myboostmobile.com"},{"name":"name","value":"Boost
|
161
|
+
Mobile"}],"rel":"SmsGateway-boost"},{"href":"http://localhost:3000/sms_gateways/carolina-west","data":[{"name":"id","value":"carolina-west"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cwwsms.com"},{"name":"name","value":"Carolina
|
162
|
+
West"}],"rel":"SmsGateway-carolina-west"},{"href":"http://localhost:3000/sms_gateways/c-spire","data":[{"name":"id","value":"c-spire"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cspire1.com"},{"name":"name","value":"C-Spire"}],"rel":"SmsGateway-c-spire"},{"href":"http://localhost:3000/sms_gateways/c-spire-mms","data":[{"name":"id","value":"c-spire-mms"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pix.cspire.com"},{"name":"name","value":"C-Spire
|
163
|
+
MMS"}],"rel":"SmsGateway-c-spire-mms"},{"href":"http://localhost:3000/sms_gateways/cellcom","data":[{"name":"id","value":"cellcom"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cellcom.quiktxt.com"},{"name":"name","value":"Cellcom"}],"rel":"SmsGateway-cellcom"},{"href":"http://localhost:3000/sms_gateways/cellular1","data":[{"name":"id","value":"cellular1"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cellular1.net"},{"name":"name","value":"Cellular
|
164
|
+
One"}],"rel":"SmsGateway-cellular1"},{"href":"http://localhost:3000/sms_gateways/cellularoneaz","data":[{"name":"id","value":"cellularoneaz"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@cellularoneaz.net"},{"name":"name","value":"CellularOne
|
165
|
+
Arizona"}],"rel":"SmsGateway-cellularoneaz"},{"href":"http://localhost:3000/sms_gateways/cellularsouth","data":[{"name":"id","value":"cellularsouth"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@csouth1.com"},{"name":"name","value":"Cellular
|
166
|
+
South"}],"rel":"SmsGateway-cellularsouth"},{"href":"http://localhost:3000/sms_gateways/chat-mobility","data":[{"name":"id","value":"chat-mobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myc29.net"},{"name":"name","value":"Chat
|
167
|
+
Mobility"}],"rel":"SmsGateway-chat-mobility"},{"href":"http://localhost:3000/sms_gateways/cincinnati-bell","data":[{"name":"id","value":"cincinnati-bell"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gocbw.com"},{"name":"name","value":"Cincinnati
|
168
|
+
Bell"}],"rel":"SmsGateway-cincinnati-bell"},{"href":"http://localhost:3000/sms_gateways/cleartalk","data":[{"name":"id","value":"cleartalk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cleartalk.us"},{"name":"name","value":"ClearTalk"}],"rel":"SmsGateway-cleartalk"},{"href":"http://localhost:3000/sms_gateways/comcast","data":[{"name":"id","value":"comcast"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@comcastpcs.textmsg.com"},{"name":"name","value":"Comcast
|
169
|
+
PCS"}],"rel":"SmsGateway-comcast"},{"href":"http://localhost:3000/sms_gateways/consumer_cellular","data":[{"name":"id","value":"consumer_cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Consumer
|
170
|
+
Cellular"}],"rel":"SmsGateway-consumer_cellular"},{"href":"http://localhost:3000/sms_gateways/credo","data":[{"name":"id","value":"credo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Credo
|
171
|
+
Mobile"}],"rel":"SmsGateway-credo"},{"href":"http://localhost:3000/sms_gateways/flash_wireless","data":[{"name":"id","value":"flash_wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@plspictures.com"},{"name":"name","value":"Flash
|
172
|
+
Wireless"}],"rel":"SmsGateway-flash_wireless"},{"href":"http://localhost:3000/sms_gateways/gci","data":[{"name":"id","value":"gci"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.gci.net"},{"name":"name","value":"GCI
|
173
|
+
(Alaska)"}],"rel":"SmsGateway-gci"},{"href":"http://localhost:3000/sms_gateways/h2o","data":[{"name":"id","value":"h2o"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"h2o
|
174
|
+
Wireless"}],"rel":"SmsGateway-h2o"},{"href":"http://localhost:3000/sms_gateways/illinoisvalleycellular","data":[{"name":"id","value":"illinoisvalleycellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ivctext.com"},{"name":"name","value":"Illinois
|
175
|
+
Valley Cellular"}],"rel":"SmsGateway-illinoisvalleycellular"},{"href":"http://localhost:3000/sms_gateways/immix","data":[{"name":"id","value":"immix"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.immix.com"},{"name":"name","value":"Immix"}],"rel":"SmsGateway-immix"},{"href":"http://localhost:3000/sms_gateways/inlandcellular","data":[{"name":"id","value":"inlandcellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@inlandlink.com"},{"name":"name","value":"Inland
|
176
|
+
Cellular"}],"rel":"SmsGateway-inlandcellular"},{"href":"http://localhost:3000/sms_gateways/iwireless","data":[{"name":"id","value":"iwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@iwirelesshometext.com"},{"name":"name","value":"I-Wireless"}],"rel":"SmsGateway-iwireless"},{"href":"http://localhost:3000/sms_gateways/kajeet","data":[{"name":"id","value":"kajeet"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.kajeet.net"},{"name":"name","value":"kajeet"}],"rel":"SmsGateway-kajeet"},{"href":"http://localhost:3000/sms_gateways/metropcs","data":[{"name":"id","value":"metropcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymetropcs.com"},{"name":"name","value":"Metro
|
177
|
+
PCS"}],"rel":"SmsGateway-metropcs"},{"href":"http://localhost:3000/sms_gateways/mta","data":[{"name":"id","value":"mta"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mtawireless.com"},{"name":"name","value":"mta"}],"rel":"SmsGateway-mta"},{"href":"http://localhost:3000/sms_gateways/mmode","data":[{"name":"id","value":"mmode"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmode.com"},{"name":"name","value":"MMode"}],"rel":"SmsGateway-mmode"},{"href":"http://localhost:3000/sms_gateways/mobipcs","data":[{"name":"id","value":"mobipcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobipcs.net"},{"name":"name","value":"MobiPCS"}],"rel":"SmsGateway-mobipcs"},{"href":"http://localhost:3000/sms_gateways/net10","data":[{"name":"id","value":"net10"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"NET10
|
178
|
+
Wireless"}],"rel":"SmsGateway-net10"},{"href":"http://localhost:3000/sms_gateways/nex-tech","data":[{"name":"id","value":"nex-tech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.ntwls.net"},{"name":"name","value":"Nex-Tech"}],"rel":"SmsGateway-nex-tech"},{"href":"http://localhost:3000/sms_gateways/nextel","data":[{"name":"id","value":"nextel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.nextel.com"},{"name":"name","value":"Nextel"}],"rel":"SmsGateway-nextel"},{"href":"http://localhost:3000/sms_gateways/northwestcell","data":[{"name":"id","value":"northwestcell"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"mynwmcell.com"},{"name":"name","value":"Northwest
|
179
|
+
Cell"}],"rel":"SmsGateway-northwestcell"},{"href":"http://localhost:3000/sms_gateways/ntelos","data":[{"name":"id","value":"ntelos"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.ntelos.com"},{"name":"name","value":"NTelos"}],"rel":"SmsGateway-ntelos"},{"href":"http://localhost:3000/sms_gateways/pageplus","data":[{"name":"id","value":"pageplus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"PagePlus"}],"rel":"SmsGateway-pageplus"},{"href":"http://localhost:3000/sms_gateways/palmerwireless","data":[{"name":"id","value":"palmerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymobiletxt.com"},{"name":"name","value":"Palmer
|
180
|
+
Wireless"}],"rel":"SmsGateway-palmerwireless"},{"href":"http://localhost:3000/sms_gateways/pioneerwireless","data":[{"name":"id","value":"pioneerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@zsend.com"},{"name":"name","value":"Pioneer
|
181
|
+
Wireless"}],"rel":"SmsGateway-pioneerwireless"},{"href":"http://localhost:3000/sms_gateways/powertel","data":[{"name":"id","value":"powertel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ptel.net"},{"name":"name","value":"Powertel"}],"rel":"SmsGateway-powertel"},{"href":"http://localhost:3000/sms_gateways/presidentschoice","data":[{"name":"id","value":"presidentschoice"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobiletxt.ca"},{"name":"name","value":"President''s
|
182
|
+
Choice"}],"rel":"SmsGateway-presidentschoice"},{"href":"http://localhost:3000/sms_gateways/pscwireless","data":[{"name":"id","value":"pscwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.pscel.com"},{"name":"name","value":"PSC
|
183
|
+
Wireless"}],"rel":"SmsGateway-pscwireless"},{"href":"http://localhost:3000/sms_gateways/qwest","data":[{"name":"id","value":"qwest"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@qwestmp.com"},{"name":"name","value":"Qwest"}],"rel":"SmsGateway-qwest"},{"href":"http://localhost:3000/sms_gateways/redpocketmobile","data":[{"name":"id","value":"redpocketmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Red
|
184
|
+
Pocket Mobile"}],"rel":"SmsGateway-redpocketmobile"},{"href":"http://localhost:3000/sms_gateways/republicwireless","data":[{"name":"id","value":"republicwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Republic
|
185
|
+
Wireless"}],"rel":"SmsGateway-republicwireless"},{"href":"http://localhost:3000/sms_gateways/solavei","data":[{"name":"id","value":"solavei"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"Solavei"}],"rel":"SmsGateway-solavei"},{"href":"http://localhost:3000/sms_gateways/southernlink","data":[{"name":"id","value":"southernlink"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@page.southernlinc.com"},{"name":"name","value":"Southern
|
186
|
+
Link"}],"rel":"SmsGateway-southernlink"},{"href":"http://localhost:3000/sms_gateways/sprint","data":[{"name":"id","value":"sprint"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Sprint
|
187
|
+
PCS"}],"rel":"SmsGateway-sprint"},{"href":"http://localhost:3000/sms_gateways/sprint_pm","data":[{"name":"id","value":"sprint_pm"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pm.sprint.com"},{"name":"name","value":"Sprint
|
188
|
+
PictureMail"}],"rel":"SmsGateway-sprint_pm"},{"href":"http://localhost:3000/sms_gateways/srt_wireless","data":[{"name":"id","value":"srt_wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@srtwireless.com"},{"name":"name","value":"SRT
|
189
|
+
Wireless"}],"rel":"SmsGateway-srt_wireless"},{"href":"http://localhost:3000/sms_gateways/straight_talk","data":[{"name":"id","value":"straight_talk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"Straight
|
190
|
+
Talk"}],"rel":"SmsGateway-straight_talk"},{"href":"http://localhost:3000/sms_gateways/stratanetworks","data":[{"name":"id","value":"stratanetworks"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.rinawireless.com"},{"name":"name","value":"Strata
|
191
|
+
Networks"}],"rel":"SmsGateway-stratanetworks"},{"href":"http://localhost:3000/sms_gateways/suncom","data":[{"name":"id","value":"suncom"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tms.suncom.com"},{"name":"name","value":"Suncom"}],"rel":"SmsGateway-suncom"},{"href":"http://localhost:3000/sms_gateways/syringawireless","data":[{"name":"id","value":"syringawireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@rinasms.com"},{"name":"name","value":"Syringa
|
192
|
+
Wireless"}],"rel":"SmsGateway-syringawireless"},{"href":"http://localhost:3000/sms_gateways/t-mobile","data":[{"name":"id","value":"t-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"T-Mobile"}],"rel":"SmsGateway-t-mobile"},{"href":"http://localhost:3000/sms_gateways/telus-mobility","data":[{"name":"id","value":"telus-mobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
|
193
|
+
Mobility"}],"rel":"SmsGateway-telus-mobility"},{"href":"http://localhost:3000/sms_gateways/textfree","data":[{"name":"id","value":"textfree"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@textfree.us"},{"name":"name","value":"TextFree"}],"rel":"SmsGateway-textfree"},{"href":"http://localhost:3000/sms_gateways/textlocal","data":[{"name":"id","value":"textlocal"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txtlocal.com"},{"name":"name","value":"TextLocal"}],"rel":"SmsGateway-textlocal"},{"href":"http://localhost:3000/sms_gateways/thumbcellular","data":[{"name":"id","value":"thumbcellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.thumbcellular.com"},{"name":"name","value":"Thumb
|
194
|
+
Cellular"}],"rel":"SmsGateway-thumbcellular"},{"href":"http://localhost:3000/sms_gateways/ting","data":[{"name":"id","value":"ting"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.ting.com"},{"name":"name","value":"Ting"}],"rel":"SmsGateway-ting"},{"href":"http://localhost:3000/sms_gateways/tracfone","data":[{"name":"id","value":"tracfone"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmst5.tracfone.com"},{"name":"name","value":"Tracfone"}],"rel":"SmsGateway-tracfone"},{"href":"http://localhost:3000/sms_gateways/union-wireless","data":[{"name":"id","value":"union-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@union-tel.com"},{"name":"name","value":"Union
|
195
|
+
Wireless"}],"rel":"SmsGateway-union-wireless"},{"href":"http://localhost:3000/sms_gateways/us-cellular","data":[{"name":"id","value":"us-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email.uscc.net"},{"name":"name","value":"US
|
196
|
+
Cellular"}],"rel":"SmsGateway-us-cellular"},{"href":"http://localhost:3000/sms_gateways/viaero","data":[{"name":"id","value":"viaero"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@viaerosms.com"},{"name":"name","value":"Viaero"}],"rel":"SmsGateway-viaero"},{"href":"http://localhost:3000/sms_gateways/virgin","data":[{"name":"id","value":"virgin"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobl.com"},{"name":"name","value":"Virgin
|
197
|
+
Mobile"}],"rel":"SmsGateway-virgin"},{"href":"http://localhost:3000/sms_gateways/verizon","data":[{"name":"id","value":"verizon"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"Verizon
|
198
|
+
Wireless"}],"rel":"SmsGateway-verizon"},{"href":"http://localhost:3000/sms_gateways/verizon-blackberry","data":[{"name":"id","value":"verizon-blackberry"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vzwpix.com"},{"name":"name","value":"Verizon
|
199
|
+
- Blackberry Only"}],"rel":"SmsGateway-verizon-blackberry"},{"href":"http://localhost:3000/sms_gateways/westcentralwireless","data":[{"name":"id","value":"westcentralwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.wcc.net"},{"name":"name","value":"West
|
200
|
+
Central Wireless"}],"rel":"SmsGateway-westcentralwireless"},{"href":"http://localhost:3000/sms_gateways/aliant-canada","data":[{"name":"id","value":"aliant-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@chat.wirefree.ca"},{"name":"name","value":"Aliant
|
201
|
+
(Canada)"}],"rel":"SmsGateway-aliant-canada"},{"href":"http://localhost:3000/sms_gateways/beeline-ua","data":[{"name":"id","value":"beeline-ua"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.beeline.ua"},{"name":"name","value":"Beeline"}],"rel":"SmsGateway-beeline-ua"},{"href":"http://localhost:3000/sms_gateways/bellmobility-canada","data":[{"name":"id","value":"bellmobility-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.bell.ca"},{"name":"name","value":"Bell
|
202
|
+
Mobility (Canada)"}],"rel":"SmsGateway-bellmobility-canada"},{"href":"http://localhost:3000/sms_gateways/bpl-mobile","data":[{"name":"id","value":"bpl-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@bplmobile.com"},{"name":"name","value":"BPL
|
203
|
+
Mobile"}],"rel":"SmsGateway-bpl-mobile"},{"href":"http://localhost:3000/sms_gateways/claro-brazil","data":[{"name":"id","value":"claro-brazil"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@clarotorpedo.com.br"},{"name":"name","value":"Claro
|
204
|
+
(Brazil)"}],"rel":"SmsGateway-claro-brazil"},{"href":"http://localhost:3000/sms_gateways/claro-pr","data":[{"name":"id","value":"claro-pr"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtexto.com"},{"name":"name","value":"Claro
|
205
|
+
(Puerto Rico)"}],"rel":"SmsGateway-claro-pr"},{"href":"http://localhost:3000/sms_gateways/csl1010-hong-kong","data":[{"name":"id","value":"csl1010-hong-kong"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@csl1010.com"},{"name":"name","value":"CSL
|
206
|
+
1010 (Hong Kong)"}],"rel":"SmsGateway-csl1010-hong-kong"},{"href":"http://localhost:3000/sms_gateways/claro-nicaragua","data":[{"name":"id","value":"claro-nicaragua"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ideasclaro-ca.com"},{"name":"name","value":"Claro
|
207
|
+
(Nicaragua)"}],"rel":"SmsGateway-claro-nicaragua"},{"href":"http://localhost:3000/sms_gateways/digicel","data":[{"name":"id","value":"digicel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@digitextjm.com"},{"name":"name","value":"Digicel"}],"rel":"SmsGateway-digicel"},{"href":"http://localhost:3000/sms_gateways/du-arab-emirates","data":[{"name":"id","value":"du-arab-emirates"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email2sms.ae"},{"name":"name","value":"Du
|
208
|
+
(UAE)"}],"rel":"SmsGateway-du-arab-emirates"},{"href":"http://localhost:3000/sms_gateways/e-plus-germany","data":[{"name":"id","value":"e-plus-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smsmail.eplus.de"},{"name":"name","value":"E-Plus
|
209
|
+
(Germany)"}],"rel":"SmsGateway-e-plus-germany"},{"href":"http://localhost:3000/sms_gateways/eastlink","data":[{"name":"id","value":"eastlink"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.eastlink.ca"},{"name":"name","value":"Eastlink"}],"rel":"SmsGateway-eastlink"},{"href":"http://localhost:3000/sms_gateways/etisalat-arab-emirates","data":[{"name":"id","value":"etisalat-arab-emirates"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email2sms.ae"},{"name":"name","value":"Etisalat
|
210
|
+
(UAE)"}],"rel":"SmsGateway-etisalat-arab-emirates"},{"href":"http://localhost:3000/sms_gateways/fido-canada","data":[{"name":"id","value":"fido-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@fido.ca"},{"name":"name","value":"Fido"}],"rel":"SmsGateway-fido-canada"},{"href":"http://localhost:3000/sms_gateways/gts-infotel","data":[{"name":"id","value":"gts-infotel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@kerthan.gtsmessenger.com"},{"name":"name","value":"GTS-Infotel"}],"rel":"SmsGateway-gts-infotel"},{"href":"http://localhost:3000/sms_gateways/koodo","data":[{"name":"id","value":"koodo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.koodomobile.com"},{"name":"name","value":"Koodo
|
211
|
+
Mobile"}],"rel":"SmsGateway-koodo"},{"href":"http://localhost:3000/sms_gateways/manitoba-mts","data":[{"name":"id","value":"manitoba-mts"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@text.mts.net"},{"name":"name","value":"MTS
|
212
|
+
(Manitoba Telecom Systems)"}],"rel":"SmsGateway-manitoba-mts"},{"href":"http://localhost:3000/sms_gateways/mobinil-egypt","data":[{"name":"id","value":"mobinil-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobinil.net"},{"name":"name","value":"Mobinil"}],"rel":"SmsGateway-mobinil-egypt"},{"href":"http://localhost:3000/sms_gateways/mobistar-belgium","data":[{"name":"id","value":"mobistar-belgium"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobistar.be"},{"name":"name","value":"Mobistar
|
213
|
+
(Belgium)"}],"rel":"SmsGateway-mobistar-belgium"},{"href":"http://localhost:3000/sms_gateways/mobitel","data":[{"name":"id","value":"mobitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mobitel.lk"},{"name":"name","value":"Mobitel"}],"rel":"SmsGateway-mobitel"},{"href":"http://localhost:3000/sms_gateways/movistar-spain","data":[{"name":"id","value":"movistar-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@correo.movistar.net"},{"name":"name","value":"Movistar
|
214
|
+
(Spain)"}],"rel":"SmsGateway-movistar-spain"},{"href":"http://localhost:3000/sms_gateways/mtn-south-africa","data":[{"name":"id","value":"mtn-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@number.sms.co.za"},{"name":"name","value":"MTN
|
215
|
+
(South Africa)"}],"rel":"SmsGateway-mtn-south-africa"},{"href":"http://localhost:3000/sms_gateways/netcom-norway","data":[{"name":"id","value":"netcom-norway"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.netcom.no"},{"name":"name","value":"Netcom
|
216
|
+
(Norway)"}],"rel":"SmsGateway-netcom-norway"},{"href":"http://localhost:3000/sms_gateways/northerntel-canada","data":[{"name":"id","value":"northerntel-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.northerntelmobility.com"},{"name":"name","value":"NorthernTel
|
217
|
+
(Canada)"}],"rel":"SmsGateway-northerntel-canada"},{"href":"http://localhost:3000/sms_gateways/o2-germany","data":[{"name":"id","value":"o2-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@o2online.de"},{"name":"name","value":"o2
|
218
|
+
(Germany)"}],"rel":"SmsGateway-o2-germany"},{"href":"http://localhost:3000/sms_gateways/o2-uk","data":[{"name":"id","value":"o2-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmail.co.uk"},{"name":"name","value":"o2
|
219
|
+
(UK)"}],"rel":"SmsGateway-o2-uk"},{"href":"http://localhost:3000/sms_gateways/orange-switzerland","data":[{"name":"id","value":"orange-switzerland"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orangemail.ch"},{"name":"name","value":"Orange
|
220
|
+
(Switzerland)"}],"rel":"SmsGateway-orange-switzerland"},{"href":"http://localhost:3000/sms_gateways/orange-mumbai","data":[{"name":"id","value":"orange-mumbai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orangemail.co.in"},{"name":"name","value":"Orange
|
221
|
+
(Mumbai)"}],"rel":"SmsGateway-orange-mumbai"},{"href":"http://localhost:3000/sms_gateways/orange-netherlands","data":[{"name":"id","value":"orange-netherlands"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.orange.nl"},{"name":"name","value":"Orange
|
222
|
+
(Netherlands)"}],"rel":"SmsGateway-orange-netherlands"},{"href":"http://localhost:3000/sms_gateways/orange-uk","data":[{"name":"id","value":"orange-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@orange.net"},{"name":"name","value":"Orange
|
223
|
+
(UK)"}],"rel":"SmsGateway-orange-uk"},{"href":"http://localhost:3000/sms_gateways/platinum-tel","data":[{"name":"id","value":"platinum-tel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Platinum
|
224
|
+
Tel"}],"rel":"SmsGateway-platinum-tel"},{"href":"http://localhost:3000/sms_gateways/proximus","data":[{"name":"id","value":"proximus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smsonline.proximus.be"},{"name":"name","value":"Proximus
|
225
|
+
(Belgium)"}],"rel":"SmsGateway-proximus"},{"href":"http://localhost:3000/sms_gateways/rogers-canada","data":[{"name":"id","value":"rogers-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.rogers.com"},{"name":"name","value":"Rogers
|
226
|
+
(Canada)"}],"rel":"SmsGateway-rogers-canada"},{"href":"http://localhost:3000/sms_gateways/sasktel-canada","data":[{"name":"id","value":"sasktel-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.sasktel.com"},{"name":"name","value":"SaskTel
|
227
|
+
(canada)"}],"rel":"SmsGateway-sasktel-canada"},{"href":"http://localhost:3000/sms_gateways/sfr-france","data":[{"name":"id","value":"sfr-france"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sfr.fr"},{"name":"name","value":"SFR
|
228
|
+
(France)"}],"rel":"SmsGateway-sfr-france"},{"href":"http://localhost:3000/sms_gateways/simply-mobile","data":[{"name":"id","value":"simply-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smtext.com"},{"name":"name","value":"Simply
|
229
|
+
Mobile"}],"rel":"SmsGateway-simply-mobile"},{"href":"http://localhost:3000/sms_gateways/tele2","data":[{"name":"id","value":"tele2"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.tele2.se"},{"name":"name","value":"Tele2"}],"rel":"SmsGateway-tele2"},{"href":"http://localhost:3000/sms_gateways/telecom-mobile","data":[{"name":"id","value":"telecom-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@etxt.co.nz"},{"name":"name","value":"Telecom
|
230
|
+
Mobile"}],"rel":"SmsGateway-telecom-mobile"},{"href":"http://localhost:3000/sms_gateways/telia","data":[{"name":"id","value":"telia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gsm1800.telia.dk"},{"name":"name","value":"Telia
|
231
|
+
(Denmark)"}],"rel":"SmsGateway-telia"},{"href":"http://localhost:3000/sms_gateways/telia_se","data":[{"name":"id","value":"telia_se"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.comviq.se"},{"name":"name","value":"Telia
|
232
|
+
(Sweden)"}],"rel":"SmsGateway-telia_se"},{"href":"http://localhost:3000/sms_gateways/tbay","data":[{"name":"id","value":"tbay"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tbayteltxt.net"},{"name":"name","value":"TBayTel
|
233
|
+
Mobility (Canada)"}],"rel":"SmsGateway-tbay"},{"href":"http://localhost:3000/sms_gateways/t-mobile-austria","data":[{"name":"id","value":"t-mobile-austria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.t-mobile.at"},{"name":"name","value":"T-Mobile
|
234
|
+
(Austria)"}],"rel":"SmsGateway-t-mobile-austria"},{"href":"http://localhost:3000/sms_gateways/t-mobile-germany","data":[{"name":"id","value":"t-mobile-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@t-d1-sms.de"},{"name":"name","value":"T-Mobile
|
235
|
+
(Germany)"}],"rel":"SmsGateway-t-mobile-germany"},{"href":"http://localhost:3000/sms_gateways/t-mobile-netherlands","data":[{"name":"id","value":"t-mobile-netherlands"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gin.nl"},{"name":"name","value":"T-Mobile
|
236
|
+
(Netherlands)"}],"rel":"SmsGateway-t-mobile-netherlands"},{"href":"http://localhost:3000/sms_gateways/t-mobile-uk","data":[{"name":"id","value":"t-mobile-uk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@t-mobile.uk.net"},{"name":"name","value":"T-Mobile
|
237
|
+
(UK)"}],"rel":"SmsGateway-t-mobile-uk"},{"href":"http://localhost:3000/sms_gateways/telebec-canada","data":[{"name":"id","value":"telebec-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.telebecmobilite.com"},{"name":"name","value":"Telebec
|
238
|
+
(Canada)"}],"rel":"SmsGateway-telebec-canada"},{"href":"http://localhost:3000/sms_gateways/telefonica-spain","data":[{"name":"id","value":"telefonica-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@movistar.net"},{"name":"name","value":"Telefonica
|
239
|
+
(Spain)"}],"rel":"SmsGateway-telefonica-spain"},{"href":"http://localhost:3000/sms_gateways/telefonica-czechrepublic","data":[{"name":"id","value":"telefonica-czechrepublic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cz.o2.com"},{"name":"name","value":"Telefonica
|
240
|
+
(Czech Republic)"}],"rel":"SmsGateway-telefonica-czechrepublic"},{"href":"http://localhost:3000/sms_gateways/telenor","data":[{"name":"id","value":"telenor"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobilpost.com"},{"name":"name","value":"Telenor"}],"rel":"SmsGateway-telenor"},{"href":"http://localhost:3000/sms_gateways/telus-canada","data":[{"name":"id","value":"telus-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
|
241
|
+
(Canada)"}],"rel":"SmsGateway-telus-canada"},{"href":"http://localhost:3000/sms_gateways/tim","data":[{"name":"id","value":"tim"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@timnet.com"},{"name":"name","value":"TIM
|
242
|
+
(Italy)"}],"rel":"SmsGateway-tim"},{"href":"http://localhost:3000/sms_gateways/three-italia","data":[{"name":"id","value":"three-italia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tre.it"},{"name":"name","value":"3
|
243
|
+
Italia"}],"rel":"SmsGateway-three-italia"},{"href":"http://localhost:3000/sms_gateways/videotron","data":[{"name":"id","value":"videotron"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@videotron.ca"},{"name":"name","value":"Videotron
|
244
|
+
(Canada)"}],"rel":"SmsGateway-videotron"},{"href":"http://localhost:3000/sms_gateways/virgin-canada","data":[{"name":"id","value":"virgin-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobile.ca"},{"name":"name","value":"Virgin
|
245
|
+
(Canada)"}],"rel":"SmsGateway-virgin-canada"},{"href":"http://localhost:3000/sms_gateways/vodacom-south-africa","data":[{"name":"id","value":"vodacom-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@voda.co.za"},{"name":"name","value":"Vodacom
|
246
|
+
(South Africa)"}],"rel":"SmsGateway-vodacom-south-africa"},{"href":"http://localhost:3000/sms_gateways/vodafone-germany","data":[{"name":"id","value":"vodafone-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone-sms.de"},{"name":"name","value":"Vodafone
|
247
|
+
(Germany)"}],"rel":"SmsGateway-vodafone-germany"},{"href":"http://localhost:3000/sms_gateways/vodafone-egypt","data":[{"name":"id","value":"vodafone-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.com.eg"},{"name":"name","value":"Vodafone
|
248
|
+
(Egypt)"}],"rel":"SmsGateway-vodafone-egypt"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-chuugoku","data":[{"name":"id","value":"vodafone-jp-chuugoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@n.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
249
|
+
(Japan - Chuugoku)"}],"rel":"SmsGateway-vodafone-jp-chuugoku"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-hokkaido","data":[{"name":"id","value":"vodafone-jp-hokkaido"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@d.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
250
|
+
(Japan - Hokkaido)"}],"rel":"SmsGateway-vodafone-jp-hokkaido"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-hokuriko","data":[{"name":"id","value":"vodafone-jp-hokuriko"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@r.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
251
|
+
(Japan - Hokuriko)"}],"rel":"SmsGateway-vodafone-jp-hokuriko"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kansai","data":[{"name":"id","value":"vodafone-jp-kansai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
252
|
+
(Japan - Kansai)"}],"rel":"SmsGateway-vodafone-jp-kansai"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-osaka","data":[{"name":"id","value":"vodafone-jp-osaka"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
253
|
+
(Japan - Osaka)"}],"rel":"SmsGateway-vodafone-jp-osaka"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kanto","data":[{"name":"id","value":"vodafone-jp-kanto"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
254
|
+
(Japan - Kanto)"}],"rel":"SmsGateway-vodafone-jp-kanto"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-koushin","data":[{"name":"id","value":"vodafone-jp-koushin"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
255
|
+
(Japan - Koushin)"}],"rel":"SmsGateway-vodafone-jp-koushin"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-tokyo","data":[{"name":"id","value":"vodafone-jp-tokyo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@k.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
256
|
+
(Japan - Tokyo)"}],"rel":"SmsGateway-vodafone-jp-tokyo"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-kyuushu","data":[{"name":"id","value":"vodafone-jp-kyuushu"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@q.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
257
|
+
(Japan - Kyuushu)"}],"rel":"SmsGateway-vodafone-jp-kyuushu"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-okinawa","data":[{"name":"id","value":"vodafone-jp-okinawa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@q.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
258
|
+
(Japan - Okinawa)"}],"rel":"SmsGateway-vodafone-jp-okinawa"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-shikoku","data":[{"name":"id","value":"vodafone-jp-shikoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@s.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
259
|
+
(Japan - Shikoku)"}],"rel":"SmsGateway-vodafone-jp-shikoku"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-touhoku","data":[{"name":"id","value":"vodafone-jp-touhoku"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
260
|
+
(Japan - Touhoku)"}],"rel":"SmsGateway-vodafone-jp-touhoku"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-niigata","data":[{"name":"id","value":"vodafone-jp-niigata"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
261
|
+
(Japan - Niigata)"}],"rel":"SmsGateway-vodafone-jp-niigata"},{"href":"http://localhost:3000/sms_gateways/vodafone-jp-toukai","data":[{"name":"id","value":"vodafone-jp-toukai"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@h.vodafone.ne.jp"},{"name":"name","value":"Vodafone
|
262
|
+
(Japan - Toukai)"}],"rel":"SmsGateway-vodafone-jp-toukai"},{"href":"http://localhost:3000/sms_gateways/vodafone-nz","data":[{"name":"id","value":"vodafone-nz"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.vodafone.net.nz"},{"name":"name","value":"Vodafone
|
263
|
+
(New Zealand)"}],"rel":"SmsGateway-vodafone-nz"},{"href":"http://localhost:3000/sms_gateways/vodafone-spain","data":[{"name":"id","value":"vodafone-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.es"},{"name":"name","value":"Vodafone
|
264
|
+
(Japan - Spain)"}],"rel":"SmsGateway-vodafone-spain"},{"href":"http://localhost:3000/sms_gateways/wind","data":[{"name":"id","value":"wind"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@wind.it"},{"name":"name","value":"Wind
|
265
|
+
(Italy)"}],"rel":"SmsGateway-wind"},{"href":"http://localhost:3000/sms_gateways/windmobile","data":[{"name":"id","value":"windmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.windmobile.ca"},{"name":"name","value":"Wind
|
266
|
+
Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sponsors","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sponsors"}],"queries":[{"rel":"search","href":"http://localhost:3000/sponsors/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
|
267
|
+
a sponsor logo.","data":[{"name":"sponsor_id","value":null},{"name":"file","value":null}]},{"rel":"remove_sponsor_logo","href":"http://localhost:3000/sponsors/remove_sponsor_logo","prompt":"translation
|
268
|
+
missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sports"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/sports/1","data":[{"name":"id","value":1},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-1"},{"href":"http://localhost:3000/sports/2","data":[{"name":"id","value":2},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Soccer"},{"name":"overtime_abbrev","value":"AET"},{"name":"overtime_label","value":"Extra
|
269
|
+
Time"},{"name":"shootout_abbrev","value":"PK"},{"name":"shootout_label","value":"Penalty
|
270
|
+
Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-2"},{"href":"http://localhost:3000/sports/4","data":[{"name":"id","value":4},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-4"},{"href":"http://localhost:3000/sports/5","data":[{"name":"id","value":5},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Baseball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-5"},{"href":"http://localhost:3000/sports/6","data":[{"name":"id","value":6},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-6"},{"href":"http://localhost:3000/sports/7","data":[{"name":"id","value":7},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Football"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-7"},{"href":"http://localhost:3000/sports/8","data":[{"name":"id","value":8},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cricket"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-8"},{"href":"http://localhost:3000/sports/9","data":[{"name":"id","value":9},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
271
|
+
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
272
|
+
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-9"},{"href":"http://localhost:3000/sports/10","data":[{"name":"id","value":10},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-10"},{"href":"http://localhost:3000/sports/11","data":[{"name":"id","value":11},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wiffleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-11"},{"href":"http://localhost:3000/sports/13","data":[{"name":"id","value":13},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bowling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-13"},{"href":"http://localhost:3000/sports/14","data":[{"name":"id","value":14},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dodgeball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-14"},{"href":"http://localhost:3000/sports/15","data":[{"name":"id","value":15},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Field
|
273
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-15"},{"href":"http://localhost:3000/sports/16","data":[{"name":"id","value":16},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ice
|
274
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-16"},{"href":"http://localhost:3000/sports/17","data":[{"name":"id","value":17},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Inline
|
275
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-17"},{"href":"http://localhost:3000/sports/18","data":[{"name":"id","value":18},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Kickball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-18"},{"href":"http://localhost:3000/sports/19","data":[{"name":"id","value":19},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Paintball"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-19"},{"href":"http://localhost:3000/sports/20","data":[{"name":"id","value":20},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Polo"},{"name":"overtime_abbrev","value":"SD"},{"name":"overtime_label","value":"Sudden
|
276
|
+
Death"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-20"},{"href":"http://localhost:3000/sports/21","data":[{"name":"id","value":21},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rowing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-21"},{"href":"http://localhost:3000/sports/22","data":[{"name":"id","value":22},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ultimate"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-22"},{"href":"http://localhost:3000/sports/23","data":[{"name":"id","value":23},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Water
|
277
|
+
Polo"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-23"},{"href":"http://localhost:3000/sports/24","data":[{"name":"id","value":24},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Other
|
278
|
+
Sport"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-24"},{"href":"http://localhost:3000/sports/25","data":[{"name":"id","value":25},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dragon
|
279
|
+
Boat"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-25"},{"href":"http://localhost:3000/sports/26","data":[{"name":"id","value":26},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Australian
|
280
|
+
Football"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
281
|
+
time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-26"},{"href":"http://localhost:3000/sports/27","data":[{"name":"id","value":27},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Badminton"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-27"},{"href":"http://localhost:3000/sports/28","data":[{"name":"id","value":28},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bandy"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-28"},{"href":"http://localhost:3000/sports/29","data":[{"name":"id","value":29},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bocce"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-29"},{"href":"http://localhost:3000/sports/30","data":[{"name":"id","value":30},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Broomball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-30"},{"href":"http://localhost:3000/sports/31","data":[{"name":"id","value":31},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cheerleading"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-31"},{"href":"http://localhost:3000/sports/32","data":[{"name":"id","value":32},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Chess"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-32"},{"href":"http://localhost:3000/sports/33","data":[{"name":"id","value":33},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Croquet"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-33"},{"href":"http://localhost:3000/sports/34","data":[{"name":"id","value":34},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Curling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-34"},{"href":"http://localhost:3000/sports/35","data":[{"name":"id","value":35},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-35"},{"href":"http://localhost:3000/sports/36","data":[{"name":"id","value":36},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Fencing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-36"},{"href":"http://localhost:3000/sports/37","data":[{"name":"id","value":37},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Foosball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-37"},{"href":"http://localhost:3000/sports/38","data":[{"name":"id","value":38},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Hurling"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
282
|
+
Time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-38"},{"href":"http://localhost:3000/sports/39","data":[{"name":"id","value":39},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Indoor
|
283
|
+
Soccer"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-39"},{"href":"http://localhost:3000/sports/40","data":[{"name":"id","value":40},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Netball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-40"},{"href":"http://localhost:3000/sports/41","data":[{"name":"id","value":41},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Running"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-41"},{"href":"http://localhost:3000/sports/42","data":[{"name":"id","value":42},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Swimming"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-42"},{"href":"http://localhost:3000/sports/43","data":[{"name":"id","value":43},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Tennis"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-43"},{"href":"http://localhost:3000/sports/44","data":[{"name":"id","value":44},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floorball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Extra
|
284
|
+
Time"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-44"},{"href":"http://localhost:3000/sports/45","data":[{"name":"id","value":45},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Petanque"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-45"},{"href":"http://localhost:3000/sports/46","data":[{"name":"id","value":46},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":true},{"name":"name","value":"Golf"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Playoff"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-46"},{"href":"http://localhost:3000/sports/47","data":[{"name":"id","value":47},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sailing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-47"},{"href":"http://localhost:3000/sports/48","data":[{"name":"id","value":48},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Roller
|
285
|
+
Derby"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-48"},{"href":"http://localhost:3000/sports/49","data":[{"name":"id","value":49},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wrestling"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-49"},{"href":"http://localhost:3000/sports/50","data":[{"name":"id","value":50},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ki-O-Rahi"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-50"},{"href":"http://localhost:3000/sports/51","data":[{"name":"id","value":51},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ringette"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-51"},{"href":"http://localhost:3000/sports/52","data":[{"name":"id","value":52},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Non-Sport
|
286
|
+
Group"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-52"},{"href":"http://localhost:3000/sports/53","data":[{"name":"id","value":53},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Outrigger"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-53"},{"href":"http://localhost:3000/sports/54","data":[{"name":"id","value":54},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cow
|
287
|
+
Tipping"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
288
|
+
Tips"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":true}],"rel":"sport-54"},{"href":"http://localhost:3000/sports/55","data":[{"name":"id","value":55},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Racquetball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-55"},{"href":"http://localhost:3000/sports/56","data":[{"name":"id","value":56},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Men"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-56"},{"href":"http://localhost:3000/sports/57","data":[{"name":"id","value":57},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Women"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-57"},{"href":"http://localhost:3000/sports/58","data":[{"name":"id","value":58},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Track
|
289
|
+
And Field"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-58"},{"href":"http://localhost:3000/sports/59","data":[{"name":"id","value":59},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Archery"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-59"},{"href":"http://localhost:3000/sports/60","data":[{"name":"id","value":60},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floor
|
290
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-60"},{"href":"http://localhost:3000/sports/61","data":[{"name":"id","value":61},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Slo-pitch"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-61"},{"href":"http://localhost:3000/sports/62","data":[{"name":"id","value":62},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Street
|
291
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-62"},{"href":"http://localhost:3000/sports/63","data":[{"name":"id","value":63},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Pickleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-63"},{"href":"http://localhost:3000/sports/64","data":[{"name":"id","value":64},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
292
|
+
Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-64"},{"href":"http://localhost:3000/sports/65","data":[{"name":"id","value":65},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sled
|
293
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-65"},{"href":"http://localhost:3000/sports/66","data":[{"name":"id","value":66},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
294
|
+
Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-66"},{"href":"http://localhost:3000/sports/67","data":[{"name":"id","value":67},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Quad
|
295
|
+
Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
296
|
+
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
297
|
+
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-67"},{"href":"http://localhost:3000/sports/68","data":[{"name":"id","value":68},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Handcycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-68"},{"href":"http://localhost:3000/sports/69","data":[{"name":"id","value":69},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Adaptive
|
298
|
+
Sports"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-69"},{"href":"http://localhost:3000/sports/70","data":[{"name":"id","value":70},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
|
299
|
+
Country"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-70"},{"href":"http://localhost:3000/sports/71","data":[{"name":"id","value":71},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
|
300
|
+
Country Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-71"},{"href":"http://localhost:3000/sports/72","data":[{"name":"id","value":72},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Alpine
|
301
|
+
Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-72"},{"href":"http://localhost:3000/sports/73","data":[{"name":"id","value":73},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
302
|
+
Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-73"},{"href":"http://localhost:3000/sports/74","data":[{"name":"id","value":74},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
303
|
+
Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-74"},{"href":"http://localhost:3000/sports/75","data":[{"name":"id","value":75},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
|
304
|
+
Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-75"},{"href":"http://localhost:3000/sports/76","data":[{"name":"id","value":76},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Horseback
|
305
|
+
Riding"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-76"},{"href":"http://localhost:3000/sports/77","data":[{"name":"id","value":77},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Diving"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-77"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistics","template":{"data":[{"name":"acronym","value":null},{"name":"always_display_decimals","value":null},{"name":"formula","value":null},{"name":"is_in_descending_order","value":null},{"name":"display_zero_totals","value":null},{"name":"is_percentage","value":null},{"name":"is_private","value":null},{"name":"is_team_statistic","value":null},{"name":"is_top_statistic","value":null},{"name":"name","value":null},{"name":"precision","value":null},{"name":"statistic_group_id","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistics"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistics/search","data":[{"name":"statistic_group_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"reorder_statistics","href":"http://localhost:3000/statistics/reorder","prompt":"reorder
|
306
|
+
the statistics based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"translation
|
307
|
+
missing: en.prompts.statistics.commands.parameters.reorder.sorted_ids"}]},{"rel":"import_from_template","href":"http://localhost:3000/statistics/import_from_template","prompt":"import
|
308
|
+
all statistics and statistic groups from a template of a sport_id to a specified
|
309
|
+
destination_team_id","data":[{"name":"destination_team_id","value":null},{"name":"sport_id","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/statistics/import_from_team","prompt":"import
|
310
|
+
all statistics and statistic groups from a source_team_id to a destination_team_id","data":[{"name":"source_team_id","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistic_data","template":{"data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"value","value":null}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistic_data"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_data/search","data":[{"name":"id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"bulk_update_statistic_data","href":"http://localhost:3000/statistic_data/bulk_update","prompt":"translation
|
311
|
+
missing: en.prompts.statistic_data.commands.bulk_update","data":[{"name":"templates","value":null,"prompt":"translation
|
312
|
+
missing: en.prompts.statistic_data.commands.parameters.bulk_update.templates"}]},{"rel":"bulk_delete_statistic_data","href":"http://localhost:3000/statistic_data/bulk_delete","prompt":"translation
|
313
|
+
missing: en.prompts.statistic_data.commands.bulk_delete","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistic_groups","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null}]},"links":[{"rel":"statistics","href":"http://localhost:3000/teams"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistic_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"reorder_statistic_groups","href":"http://localhost:3000/statistic_groups/reorder","prompt":"reorder
|
314
|
+
the statistic groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"translation
|
315
|
+
missing: en.prompts.statistic_groups.commands.parameters.reorder.sorted_ids"}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/referrals","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//referrals"}],"template":{"data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]},"commands":[{"rel":"referral","href":"http://localhost:3000/referrals","prompt":"Referral","data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_fees","template":{"data":[{"name":"description","value":null},{"name":"amount","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_fees"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_fees/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_media","template":{"data":[{"name":"description","value":null},{"name":"team_media_group_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media_group","href":"http://localhost:3000/team_media_groups"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_media"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_team_medium","href":"http://localhost:3000/team_media/upload_team_medium","prompt":"Upload
|
316
|
+
a team media file","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"media_format","value":null,"prompt":"The
|
317
|
+
format of the media, either \"image\" or \"file\""},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"file","value":null}]},{"rel":"assign_media_to_group","href":"http://localhost:3000/team_media/assign_media_to_group","prompt":"Assign
|
318
|
+
the specified team_medium_ids to the team_media_group_id","data":[{"name":"team_medium_ids","value":null,"prompt":"A
|
319
|
+
comma delimited list of team medium ids"},{"name":"team_media_group_id","value":null}]},{"rel":"rotate_team_medium_image","href":"http://localhost:3000/team_media/rotate_image","prompt":"Rotate
|
320
|
+
an image with specified team_medium_id in the specified rotate_direction","data":[{"name":"team_medium_id","value":null},{"name":"rotate_direction","value":null,"prompt":"The
|
321
|
+
direction to rotate the image, valid valiuse are \"clockwise\" or \"counterclockwise\""}]},{"rel":"set_medium_as_team_photo","href":"http://localhost:3000/team_media/set_as_team_photo","prompt":"Set
|
322
|
+
the specified team medium image as the team photo","data":[{"name":"team_medium_id","value":null}]},{"rel":"set_medium_as_member_photo","href":"http://localhost:3000/team_media/set_as_member_photo","prompt":"Set
|
323
|
+
the specified team medium image as the specified member_id''s photo","data":[{"name":"team_medium_id","value":null},{"name":"member_id","value":null}]},{"rel":"bulk_delete_team_media","href":"http://localhost:3000/team_media/bulk_delete","prompt":"Deletes
|
324
|
+
the specified team_medium_ids","data":[{"name":"team_medium_ids","value":null,"prompt":"A
|
325
|
+
comma delimited list of team medium ids"}]},{"rel":"create_team_video_link","href":"http://localhost:3000/team_media/create_video_link","prompt":"Add
|
326
|
+
a link to a YouTube or Vimeo video.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"video_url","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_medium_comments","template":{"data":[{"name":"comment","value":null},{"name":"member_id","value":null},{"name":"team_medium_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team_medium","href":"http://localhost:3000/team_media"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_medium_comments"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_medium_comments/search","data":[{"name":"team_media_group_id","value":null},{"name":"team_medium_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_media_groups","template":{"data":[{"name":"is_private","value":null},{"name":"name","value":null},{"name":"media_format","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"self","href":"http://localhost:3000//team_media_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_public_sites","template":{"data":[{"name":"custom_domain","value":null},{"name":"enable_assignments","value":null},{"name":"enable_availabilities","value":null},{"name":"enable_events","value":null},{"name":"enable_files","value":null},{"name":"enable_games","value":null},{"name":"enable_marketplace","value":null},{"name":"enable_members","value":null},{"name":"enable_messages","value":null},{"name":"enable_payments","value":null},{"name":"enable_photos","value":null},{"name":"enable_public_contact","value":null},{"name":"enable_public_email","value":null},{"name":"enable_schedule","value":null},{"name":"enable_statistics","value":null},{"name":"enabled","value":null},{"name":"hide_old_events","value":null},{"name":"hide_win_loss_record","value":null},{"name":"public_email_manager_only","value":null},{"name":"public_email_reply_to_list","value":null},{"name":"subdomain","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_public_sites"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_public_sites/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"upload_team_public_photo","href":"http://localhost:3000/team_public_sites/upload_team_public_photo","prompt":"Upload
|
2407
327
|
a team public photo.","data":[{"name":"team_public_site_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_public_photo","href":"http://localhost:3000/team_public_sites/remove_team_public_photo","prompt":"Remove
|
2408
328
|
a team public photo.","data":[{"name":"team_public_site_id","value":null}]},{"rel":"validate_subdomain","href":"http://localhost:3000/team_public_sites/validate_subdomain","prompt":"Check
|
2409
|
-
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}}
|
2410
|
-
|
2411
|
-
|
2412
|
-
|
2413
|
-
|
2414
|
-
|
2415
|
-
|
2416
|
-
|
2417
|
-
|
2418
|
-
|
2419
|
-
|
2420
|
-
|
2421
|
-
|
2422
|
-
|
2423
|
-
|
2424
|
-
|
2425
|
-
|
2426
|
-
|
2427
|
-
|
2428
|
-
|
2429
|
-
|
2430
|
-
|
2431
|
-
|
2432
|
-
|
2433
|
-
|
2434
|
-
|
2435
|
-
|
2436
|
-
|
2437
|
-
|
2438
|
-
|
2439
|
-
|
2440
|
-
|
2441
|
-
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2445
|
-
|
2446
|
-
|
2447
|
-
|
2448
|
-
|
2449
|
-
|
2450
|
-
|
2451
|
-
|
2452
|
-
|
2453
|
-
|
2454
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2455
|
-
- request:
|
2456
|
-
method: get
|
2457
|
-
uri: http://localhost:3000/tsl_photos?hmac_client_id=classic&hmac_nonce=ce9a7c15-400d-4f4d-88cd-712906eb2281&hmac_timestamp=1432825400
|
2458
|
-
body:
|
2459
|
-
encoding: US-ASCII
|
2460
|
-
string: ''
|
2461
|
-
headers:
|
2462
|
-
User-Agent:
|
2463
|
-
- Faraday v0.9.1
|
2464
|
-
X-Teamsnap-Hmac:
|
2465
|
-
- 5f43ed1c10fc051cb83ca154dfd4f5bf0e6029a3650aa6cecc6404fc55c71277
|
2466
|
-
response:
|
2467
|
-
status:
|
2468
|
-
code: 200
|
2469
|
-
message: OK
|
2470
|
-
headers:
|
2471
|
-
Content-Type:
|
2472
|
-
- application/vnd.collection+json
|
2473
|
-
Content-Length:
|
2474
|
-
- '857'
|
2475
|
-
X-Content-Type-Options:
|
2476
|
-
- nosniff
|
2477
|
-
ETag:
|
2478
|
-
- '"bc8cb5b1df7b473f2177ee60f92f6e6b"'
|
2479
|
-
Cache-Control:
|
2480
|
-
- max-age=0, private, must-revalidate
|
2481
|
-
X-Request-Id:
|
2482
|
-
- 02a07aa6-911b-463e-8029-000ea521a559
|
2483
|
-
X-Runtime:
|
2484
|
-
- '0.009567'
|
2485
|
-
Connection:
|
2486
|
-
- keep-alive
|
2487
|
-
Server:
|
2488
|
-
- thin
|
2489
|
-
body:
|
2490
|
-
encoding: UTF-8
|
2491
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/tsl_photos","data":[{"name":"host_prefix","value":"https://7260a23d55820f6c1c20-f198c593f0f20eb7f7dca7d007f0f2d7.ssl.cf1.rackcdn.com"}],"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_photos"}],"commands":[{"rel":"upload","href":"https://storage101.dfw1.clouddrive.com/v1/MossoCloudFS_b16ebd19-d46d-4f34-88cc-4d869b1b56f4/rw_formpost_test","prompt":"Upload
|
2492
|
-
TeamSnap Live photo","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"user_id","value":null},{"name":"redirect","value":""},{"name":"max_file_size","value":104857600},{"name":"max_file_count","value":1},{"name":"expires","value":1432827201},{"name":"signature","value":"43bbe2467efe0c0368d0a377104075b4666369c6"},{"name":"file1","value":null}]}]}}'
|
2493
|
-
http_version: '1.1'
|
2494
|
-
adapter_metadata:
|
2495
|
-
effective_url: http://localhost:3000/tsl_photos?hmac_client_id=classic&hmac_nonce=ce9a7c15-400d-4f4d-88cd-712906eb2281&hmac_timestamp=1432825400
|
2496
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
2497
|
-
- request:
|
2498
|
-
method: get
|
2499
|
-
uri: http://localhost:3000/users?hmac_client_id=classic&hmac_nonce=545903d1-b9da-441e-a4a9-43573a6c9a00&hmac_timestamp=1432825400
|
2500
|
-
body:
|
2501
|
-
encoding: US-ASCII
|
2502
|
-
string: ''
|
2503
|
-
headers:
|
2504
|
-
User-Agent:
|
2505
|
-
- Faraday v0.9.1
|
2506
|
-
X-Teamsnap-Hmac:
|
2507
|
-
- ac14582de39f3765e222977be57e78c158db9c20ab819dad3db9eb6ddba07c19
|
2508
|
-
response:
|
2509
|
-
status:
|
2510
|
-
code: 200
|
2511
|
-
message: OK
|
2512
|
-
headers:
|
2513
|
-
Content-Type:
|
2514
|
-
- application/vnd.collection+json
|
2515
|
-
Content-Length:
|
2516
|
-
- '669'
|
2517
|
-
X-Content-Type-Options:
|
2518
|
-
- nosniff
|
2519
|
-
ETag:
|
2520
|
-
- '"d26107c6dc8fcf220d10c43d2a52546e"'
|
2521
|
-
Cache-Control:
|
2522
|
-
- max-age=0, private, must-revalidate
|
2523
|
-
X-Request-Id:
|
2524
|
-
- 8612c0d7-9c59-4cdb-a915-5d2cb11ad55b
|
2525
|
-
X-Runtime:
|
2526
|
-
- '0.009106'
|
2527
|
-
Connection:
|
2528
|
-
- keep-alive
|
2529
|
-
Server:
|
2530
|
-
- thin
|
2531
|
-
body:
|
2532
|
-
encoding: UTF-8
|
2533
|
-
string: '{"collection":{"version":"3.72.0","href":"http://localhost:3000/users","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"password","value":null},{"name":"birthday","value":null},{"name":"email","value":null},{"name":"facebook_id","value":null},{"name":"facebook_access_token","value":null}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/users"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null}]}]}}'
|
2534
|
-
http_version: '1.1'
|
2535
|
-
adapter_metadata:
|
2536
|
-
effective_url: http://localhost:3000/users?hmac_client_id=classic&hmac_nonce=545903d1-b9da-441e-a4a9-43573a6c9a00&hmac_timestamp=1432825400
|
2537
|
-
recorded_at: Thu, 28 May 2015 15:03:21 GMT
|
329
|
+
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"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_smses","href":"http://localhost:3000/broadcast_smses"},{"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":"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":"division_locations","href":"http://localhost:3000/division_locations"},{"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":"events","href":"http://localhost:3000/events"},{"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":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"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":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","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_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
|
330
|
+
all teams accessible to current user that have the provided sport_id and have
|
331
|
+
at least one statistic to import","data":[{"name":"sport_id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
|
332
|
+
team members or contacts to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"member_id","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]},{"rel":"update_time_zone","href":"http://localhost:3000/teams/update_time_zone","prompt":"Update
|
333
|
+
team''s time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
|
334
|
+
all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_paypal_preferences","template":{"data":[{"name":"is_paypal_active","value":null},{"name":"is_paypal_allowed","value":null},{"name":"paypal_currency_id","value":null},{"name":"paypal_email","value":null},{"name":"paypal_first_name","value":null},{"name":"paypal_last_name","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_paypal_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_paypal_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_preferences","template":{"data":[{"name":"age_group","value":null},{"name":"alternate_sport_name","value":null},{"name":"announcement_above_home_photo","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"assignments_show_tab","value":null},{"name":"availabilities_show_tab","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"files_show_tab","value":null,"deprecated":true,"prompt":"files_show_tab
|
335
|
+
is deprecated and will be removed in a future version, use team_media_show_tab
|
336
|
+
instead."},{"name":"gender","value":null},{"name":"global_uniform_away","value":null},{"name":"global_uniform_home","value":null},{"name":"global_use_international_date","value":null},{"name":"global_use_international_time","value":null},{"name":"hide_header","value":null},{"name":"introduction_text","value":null},{"name":"is_coed","value":null},{"name":"is_payments_private","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_youth","value":null},{"name":"manager_default_availability","value":null},{"name":"marketplace_show_tab","value":null},{"name":"member_sort_order","value":null},{"name":"payments_ignore_non_players","value":null},{"name":"payments_show_tab","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_game","value":null},{"name":"skill_level","value":null},{"name":"share_availability_notes","value":null},{"name":"show_division_standings","value":null},{"name":"statistics_show_tab","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null},{"name":"tracked_items_ignore_non_players","value":null},{"name":"tracked_items_is_private","value":null,"deprecated":true,"prompt":"tracked_items_is_private
|
337
|
+
is deprecated and will be removed in a future version, use is_tracked_items_private
|
338
|
+
instead."},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_preferences/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null}]}],"commands":[{"rel":"upload_team_logo","href":"http://localhost:3000/teams_preferences/upload_team_logo","prompt":"Upload
|
339
|
+
a team logo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_logo","href":"http://localhost:3000/teams_preferences/remove_team_logo","prompt":"Remove
|
340
|
+
a team logo.","data":[{"name":"team_preferences_id","value":null}]},{"rel":"upload_team_photo","href":"http://localhost:3000/teams_preferences/upload_team_photo","prompt":"Upload
|
341
|
+
a team photo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_photo","href":"http://localhost:3000/teams_preferences/remove_team_photo","prompt":"Remove
|
342
|
+
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_results","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_statistics"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//time_zones"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/time_zones/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
|
343
|
+
Samoa"},{"name":"iana_name","value":"Pacific/Pago_Pago"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-american-samoa"},{"href":"http://localhost:3000/time_zones/international-date-line-west","data":[{"name":"id","value":"international-date-line-west"},{"name":"type","value":"TimeZone"},{"name":"description","value":"International
|
344
|
+
Date Line West"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-international-date-line-west"},{"href":"http://localhost:3000/time_zones/midway-island","data":[{"name":"id","value":"midway-island"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Midway
|
345
|
+
Island"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-midway-island"},{"href":"http://localhost:3000/time_zones/samoa","data":[{"name":"id","value":"samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samoa"},{"name":"iana_name","value":"Pacific/Apia"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-samoa"},{"href":"http://localhost:3000/time_zones/hawaii","data":[{"name":"id","value":"hawaii"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hawaii"},{"name":"iana_name","value":"Pacific/Honolulu"},{"name":"offset","value":"-10:00"}],"rel":"TimeZone-hawaii"},{"href":"http://localhost:3000/time_zones/alaska","data":[{"name":"id","value":"alaska"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Alaska"},{"name":"iana_name","value":"America/Juneau"},{"name":"offset","value":"-09:00"}],"rel":"TimeZone-alaska"},{"href":"http://localhost:3000/time_zones/pacific-time-us-canada","data":[{"name":"id","value":"pacific-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pacific
|
346
|
+
Time (US & Canada)"},{"name":"iana_name","value":"America/Los_Angeles"},{"name":"offset","value":"-08:00"}],"rel":"TimeZone-pacific-time-us-canada"},{"href":"http://localhost:3000/time_zones/tijuana","data":[{"name":"id","value":"tijuana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tijuana"},{"name":"iana_name","value":"America/Tijuana"},{"name":"offset","value":"-08:00"}],"rel":"TimeZone-tijuana"},{"href":"http://localhost:3000/time_zones/arizona","data":[{"name":"id","value":"arizona"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Arizona"},{"name":"iana_name","value":"America/Phoenix"},{"name":"offset","value":"-07:00"}],"rel":"TimeZone-arizona"},{"href":"http://localhost:3000/time_zones/chihuahua","data":[{"name":"id","value":"chihuahua"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chihuahua"},{"name":"iana_name","value":"America/Chihuahua"},{"name":"offset","value":"-07:00"}],"rel":"TimeZone-chihuahua"},{"href":"http://localhost:3000/time_zones/mazatlan","data":[{"name":"id","value":"mazatlan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mazatlan"},{"name":"iana_name","value":"America/Mazatlan"},{"name":"offset","value":"-07:00"}],"rel":"TimeZone-mazatlan"},{"href":"http://localhost:3000/time_zones/mountain-time-us-canada","data":[{"name":"id","value":"mountain-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mountain
|
347
|
+
Time (US & Canada)"},{"name":"iana_name","value":"America/Denver"},{"name":"offset","value":"-07:00"}],"rel":"TimeZone-mountain-time-us-canada"},{"href":"http://localhost:3000/time_zones/central-america","data":[{"name":"id","value":"central-america"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Central
|
348
|
+
America"},{"name":"iana_name","value":"America/Guatemala"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-central-america"},{"href":"http://localhost:3000/time_zones/central-time-us-canada","data":[{"name":"id","value":"central-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Central
|
349
|
+
Time (US & Canada)"},{"name":"iana_name","value":"America/Chicago"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-central-time-us-canada"},{"href":"http://localhost:3000/time_zones/guadalajara","data":[{"name":"id","value":"guadalajara"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Guadalajara"},{"name":"iana_name","value":"America/Mexico_City"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-guadalajara"},{"href":"http://localhost:3000/time_zones/mexico-city","data":[{"name":"id","value":"mexico-city"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mexico
|
350
|
+
City"},{"name":"iana_name","value":"America/Mexico_City"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-mexico-city"},{"href":"http://localhost:3000/time_zones/monterrey","data":[{"name":"id","value":"monterrey"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monterrey"},{"name":"iana_name","value":"America/Monterrey"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-monterrey"},{"href":"http://localhost:3000/time_zones/saskatchewan","data":[{"name":"id","value":"saskatchewan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Saskatchewan"},{"name":"iana_name","value":"America/Regina"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-saskatchewan"},{"href":"http://localhost:3000/time_zones/bogota","data":[{"name":"id","value":"bogota"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bogota"},{"name":"iana_name","value":"America/Bogota"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-bogota"},{"href":"http://localhost:3000/time_zones/eastern-time-us-canada","data":[{"name":"id","value":"eastern-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Eastern
|
351
|
+
Time (US & Canada)"},{"name":"iana_name","value":"America/New_York"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-eastern-time-us-canada"},{"href":"http://localhost:3000/time_zones/indiana-east","data":[{"name":"id","value":"indiana-east"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Indiana
|
352
|
+
(East)"},{"name":"iana_name","value":"America/Indiana/Indianapolis"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-indiana-east"},{"href":"http://localhost:3000/time_zones/lima","data":[{"name":"id","value":"lima"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lima"},{"name":"iana_name","value":"America/Lima"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-lima"},{"href":"http://localhost:3000/time_zones/quito","data":[{"name":"id","value":"quito"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Quito"},{"name":"iana_name","value":"America/Lima"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-quito"},{"href":"http://localhost:3000/time_zones/caracas","data":[{"name":"id","value":"caracas"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Caracas"},{"name":"iana_name","value":"America/Caracas"},{"name":"offset","value":"-04:30"}],"rel":"TimeZone-caracas"},{"href":"http://localhost:3000/time_zones/atlantic-time-canada","data":[{"name":"id","value":"atlantic-time-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Atlantic
|
353
|
+
Time (Canada)"},{"name":"iana_name","value":"America/Halifax"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-atlantic-time-canada"},{"href":"http://localhost:3000/time_zones/georgetown","data":[{"name":"id","value":"georgetown"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Georgetown"},{"name":"iana_name","value":"America/Guyana"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-georgetown"},{"href":"http://localhost:3000/time_zones/la-paz","data":[{"name":"id","value":"la-paz"},{"name":"type","value":"TimeZone"},{"name":"description","value":"La
|
354
|
+
Paz"},{"name":"iana_name","value":"America/La_Paz"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-la-paz"},{"href":"http://localhost:3000/time_zones/newfoundland","data":[{"name":"id","value":"newfoundland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Newfoundland"},{"name":"iana_name","value":"America/St_Johns"},{"name":"offset","value":"-03:30"}],"rel":"TimeZone-newfoundland"},{"href":"http://localhost:3000/time_zones/brasilia","data":[{"name":"id","value":"brasilia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brasilia"},{"name":"iana_name","value":"America/Sao_Paulo"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-brasilia"},{"href":"http://localhost:3000/time_zones/buenos-aires","data":[{"name":"id","value":"buenos-aires"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Buenos
|
355
|
+
Aires"},{"name":"iana_name","value":"America/Argentina/Buenos_Aires"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-buenos-aires"},{"href":"http://localhost:3000/time_zones/greenland","data":[{"name":"id","value":"greenland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Greenland"},{"name":"iana_name","value":"America/Godthab"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-greenland"},{"href":"http://localhost:3000/time_zones/montevideo","data":[{"name":"id","value":"montevideo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Montevideo"},{"name":"iana_name","value":"America/Montevideo"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-montevideo"},{"href":"http://localhost:3000/time_zones/santiago","data":[{"name":"id","value":"santiago"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Santiago"},{"name":"iana_name","value":"America/Santiago"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-santiago"},{"href":"http://localhost:3000/time_zones/mid-atlantic","data":[{"name":"id","value":"mid-atlantic"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mid-Atlantic"},{"name":"iana_name","value":"Atlantic/South_Georgia"},{"name":"offset","value":"-02:00"}],"rel":"TimeZone-mid-atlantic"},{"href":"http://localhost:3000/time_zones/azores","data":[{"name":"id","value":"azores"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Azores"},{"name":"iana_name","value":"Atlantic/Azores"},{"name":"offset","value":"-01:00"}],"rel":"TimeZone-azores"},{"href":"http://localhost:3000/time_zones/cape-verde-is","data":[{"name":"id","value":"cape-verde-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cape
|
356
|
+
Verde Is."},{"name":"iana_name","value":"Atlantic/Cape_Verde"},{"name":"offset","value":"-01:00"}],"rel":"TimeZone-cape-verde-is"},{"href":"http://localhost:3000/time_zones/casablanca","data":[{"name":"id","value":"casablanca"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Casablanca"},{"name":"iana_name","value":"Africa/Casablanca"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-casablanca"},{"href":"http://localhost:3000/time_zones/dublin","data":[{"name":"id","value":"dublin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dublin"},{"name":"iana_name","value":"Europe/Dublin"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-dublin"},{"href":"http://localhost:3000/time_zones/edinburgh","data":[{"name":"id","value":"edinburgh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Edinburgh"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-edinburgh"},{"href":"http://localhost:3000/time_zones/lisbon","data":[{"name":"id","value":"lisbon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lisbon"},{"name":"iana_name","value":"Europe/Lisbon"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-lisbon"},{"href":"http://localhost:3000/time_zones/london","data":[{"name":"id","value":"london"},{"name":"type","value":"TimeZone"},{"name":"description","value":"London"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-london"},{"href":"http://localhost:3000/time_zones/monrovia","data":[{"name":"id","value":"monrovia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monrovia"},{"name":"iana_name","value":"Africa/Monrovia"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-monrovia"},{"href":"http://localhost:3000/time_zones/utc","data":[{"name":"id","value":"utc"},{"name":"type","value":"TimeZone"},{"name":"description","value":"UTC"},{"name":"iana_name","value":"Etc/UTC"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-utc"},{"href":"http://localhost:3000/time_zones/amsterdam","data":[{"name":"id","value":"amsterdam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amsterdam"},{"name":"iana_name","value":"Europe/Amsterdam"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-amsterdam"},{"href":"http://localhost:3000/time_zones/belgrade","data":[{"name":"id","value":"belgrade"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Belgrade"},{"name":"iana_name","value":"Europe/Belgrade"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-belgrade"},{"href":"http://localhost:3000/time_zones/berlin","data":[{"name":"id","value":"berlin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Berlin"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-berlin"},{"href":"http://localhost:3000/time_zones/bern","data":[{"name":"id","value":"bern"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bern"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bern"},{"href":"http://localhost:3000/time_zones/bratislava","data":[{"name":"id","value":"bratislava"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bratislava"},{"name":"iana_name","value":"Europe/Bratislava"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bratislava"},{"href":"http://localhost:3000/time_zones/brussels","data":[{"name":"id","value":"brussels"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brussels"},{"name":"iana_name","value":"Europe/Brussels"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-brussels"},{"href":"http://localhost:3000/time_zones/budapest","data":[{"name":"id","value":"budapest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Budapest"},{"name":"iana_name","value":"Europe/Budapest"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-budapest"},{"href":"http://localhost:3000/time_zones/copenhagen","data":[{"name":"id","value":"copenhagen"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Copenhagen"},{"name":"iana_name","value":"Europe/Copenhagen"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-copenhagen"},{"href":"http://localhost:3000/time_zones/ljubljana","data":[{"name":"id","value":"ljubljana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ljubljana"},{"name":"iana_name","value":"Europe/Ljubljana"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-ljubljana"},{"href":"http://localhost:3000/time_zones/madrid","data":[{"name":"id","value":"madrid"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Madrid"},{"name":"iana_name","value":"Europe/Madrid"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-madrid"},{"href":"http://localhost:3000/time_zones/paris","data":[{"name":"id","value":"paris"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Paris"},{"name":"iana_name","value":"Europe/Paris"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-paris"},{"href":"http://localhost:3000/time_zones/prague","data":[{"name":"id","value":"prague"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Prague"},{"name":"iana_name","value":"Europe/Prague"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-prague"},{"href":"http://localhost:3000/time_zones/rome","data":[{"name":"id","value":"rome"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rome"},{"name":"iana_name","value":"Europe/Rome"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-rome"},{"href":"http://localhost:3000/time_zones/sarajevo","data":[{"name":"id","value":"sarajevo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sarajevo"},{"name":"iana_name","value":"Europe/Sarajevo"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-sarajevo"},{"href":"http://localhost:3000/time_zones/skopje","data":[{"name":"id","value":"skopje"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Skopje"},{"name":"iana_name","value":"Europe/Skopje"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-skopje"},{"href":"http://localhost:3000/time_zones/stockholm","data":[{"name":"id","value":"stockholm"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Stockholm"},{"name":"iana_name","value":"Europe/Stockholm"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-stockholm"},{"href":"http://localhost:3000/time_zones/vienna","data":[{"name":"id","value":"vienna"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vienna"},{"name":"iana_name","value":"Europe/Vienna"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-vienna"},{"href":"http://localhost:3000/time_zones/warsaw","data":[{"name":"id","value":"warsaw"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Warsaw"},{"name":"iana_name","value":"Europe/Warsaw"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-warsaw"},{"href":"http://localhost:3000/time_zones/west-central-africa","data":[{"name":"id","value":"west-central-africa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"West
|
357
|
+
Central Africa"},{"name":"iana_name","value":"Africa/Algiers"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-west-central-africa"},{"href":"http://localhost:3000/time_zones/zagreb","data":[{"name":"id","value":"zagreb"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Zagreb"},{"name":"iana_name","value":"Europe/Zagreb"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-zagreb"},{"href":"http://localhost:3000/time_zones/amman","data":[{"name":"id","value":"amman"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amman"},{"name":"iana_name","value":"Asia/Amman"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-amman"},{"href":"http://localhost:3000/time_zones/athens","data":[{"name":"id","value":"athens"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Athens"},{"name":"iana_name","value":"Europe/Athens"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-athens"},{"href":"http://localhost:3000/time_zones/bucharest","data":[{"name":"id","value":"bucharest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bucharest"},{"name":"iana_name","value":"Europe/Bucharest"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-bucharest"},{"href":"http://localhost:3000/time_zones/cairo","data":[{"name":"id","value":"cairo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cairo"},{"name":"iana_name","value":"Africa/Cairo"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-cairo"},{"href":"http://localhost:3000/time_zones/harare","data":[{"name":"id","value":"harare"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Harare"},{"name":"iana_name","value":"Africa/Harare"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-harare"},{"href":"http://localhost:3000/time_zones/helsinki","data":[{"name":"id","value":"helsinki"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Helsinki"},{"name":"iana_name","value":"Europe/Helsinki"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-helsinki"},{"href":"http://localhost:3000/time_zones/istanbul","data":[{"name":"id","value":"istanbul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Istanbul"},{"name":"iana_name","value":"Europe/Istanbul"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-istanbul"},{"href":"http://localhost:3000/time_zones/jerusalem","data":[{"name":"id","value":"jerusalem"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jerusalem"},{"name":"iana_name","value":"Asia/Jerusalem"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-jerusalem"},{"href":"http://localhost:3000/time_zones/kyiv","data":[{"name":"id","value":"kyiv"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kyiv"},{"name":"iana_name","value":"Europe/Kiev"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-kyiv"},{"href":"http://localhost:3000/time_zones/pretoria","data":[{"name":"id","value":"pretoria"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pretoria"},{"name":"iana_name","value":"Africa/Johannesburg"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-pretoria"},{"href":"http://localhost:3000/time_zones/riga","data":[{"name":"id","value":"riga"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riga"},{"name":"iana_name","value":"Europe/Riga"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-riga"},{"href":"http://localhost:3000/time_zones/sofia","data":[{"name":"id","value":"sofia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sofia"},{"name":"iana_name","value":"Europe/Sofia"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-sofia"},{"href":"http://localhost:3000/time_zones/tallinn","data":[{"name":"id","value":"tallinn"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tallinn"},{"name":"iana_name","value":"Europe/Tallinn"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-tallinn"},{"href":"http://localhost:3000/time_zones/vilnius","data":[{"name":"id","value":"vilnius"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vilnius"},{"name":"iana_name","value":"Europe/Vilnius"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-vilnius"},{"href":"http://localhost:3000/time_zones/baghdad","data":[{"name":"id","value":"baghdad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baghdad"},{"name":"iana_name","value":"Asia/Baghdad"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-baghdad"},{"href":"http://localhost:3000/time_zones/kuwait","data":[{"name":"id","value":"kuwait"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuwait"},{"name":"iana_name","value":"Asia/Kuwait"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-kuwait"},{"href":"http://localhost:3000/time_zones/minsk","data":[{"name":"id","value":"minsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Minsk"},{"name":"iana_name","value":"Europe/Minsk"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-minsk"},{"href":"http://localhost:3000/time_zones/moscow","data":[{"name":"id","value":"moscow"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Moscow"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-moscow"},{"href":"http://localhost:3000/time_zones/nairobi","data":[{"name":"id","value":"nairobi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nairobi"},{"name":"iana_name","value":"Africa/Nairobi"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-nairobi"},{"href":"http://localhost:3000/time_zones/riyadh","data":[{"name":"id","value":"riyadh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riyadh"},{"name":"iana_name","value":"Asia/Riyadh"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-riyadh"},{"href":"http://localhost:3000/time_zones/st-petersburg","data":[{"name":"id","value":"st-petersburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"St.
|
358
|
+
Petersburg"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-st-petersburg"},{"href":"http://localhost:3000/time_zones/volgograd","data":[{"name":"id","value":"volgograd"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Volgograd"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-volgograd"},{"href":"http://localhost:3000/time_zones/tehran","data":[{"name":"id","value":"tehran"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tehran"},{"name":"iana_name","value":"Asia/Tehran"},{"name":"offset","value":"+03:30"}],"rel":"TimeZone-tehran"},{"href":"http://localhost:3000/time_zones/abu-dhabi","data":[{"name":"id","value":"abu-dhabi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Abu
|
359
|
+
Dhabi"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-abu-dhabi"},{"href":"http://localhost:3000/time_zones/baku","data":[{"name":"id","value":"baku"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baku"},{"name":"iana_name","value":"Asia/Baku"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-baku"},{"href":"http://localhost:3000/time_zones/muscat","data":[{"name":"id","value":"muscat"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Muscat"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-muscat"},{"href":"http://localhost:3000/time_zones/tbilisi","data":[{"name":"id","value":"tbilisi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tbilisi"},{"name":"iana_name","value":"Asia/Tbilisi"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-tbilisi"},{"href":"http://localhost:3000/time_zones/yerevan","data":[{"name":"id","value":"yerevan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yerevan"},{"name":"iana_name","value":"Asia/Yerevan"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-yerevan"},{"href":"http://localhost:3000/time_zones/kabul","data":[{"name":"id","value":"kabul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kabul"},{"name":"iana_name","value":"Asia/Kabul"},{"name":"offset","value":"+04:30"}],"rel":"TimeZone-kabul"},{"href":"http://localhost:3000/time_zones/ekaterinburg","data":[{"name":"id","value":"ekaterinburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ekaterinburg"},{"name":"iana_name","value":"Asia/Yekaterinburg"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-ekaterinburg"},{"href":"http://localhost:3000/time_zones/islamabad","data":[{"name":"id","value":"islamabad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Islamabad"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-islamabad"},{"href":"http://localhost:3000/time_zones/karachi","data":[{"name":"id","value":"karachi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Karachi"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-karachi"},{"href":"http://localhost:3000/time_zones/tashkent","data":[{"name":"id","value":"tashkent"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tashkent"},{"name":"iana_name","value":"Asia/Tashkent"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-tashkent"},{"href":"http://localhost:3000/time_zones/chennai","data":[{"name":"id","value":"chennai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chennai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-chennai"},{"href":"http://localhost:3000/time_zones/kolkata","data":[{"name":"id","value":"kolkata"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kolkata"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-kolkata"},{"href":"http://localhost:3000/time_zones/mumbai","data":[{"name":"id","value":"mumbai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mumbai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-mumbai"},{"href":"http://localhost:3000/time_zones/new-delhi","data":[{"name":"id","value":"new-delhi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
360
|
+
Delhi"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-new-delhi"},{"href":"http://localhost:3000/time_zones/sri-jayawardenepura","data":[{"name":"id","value":"sri-jayawardenepura"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sri
|
361
|
+
Jayawardenepura"},{"name":"iana_name","value":"Asia/Colombo"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-sri-jayawardenepura"},{"href":"http://localhost:3000/time_zones/kathmandu","data":[{"name":"id","value":"kathmandu"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kathmandu"},{"name":"iana_name","value":"Asia/Kathmandu"},{"name":"offset","value":"+05:45"}],"rel":"TimeZone-kathmandu"},{"href":"http://localhost:3000/time_zones/almaty","data":[{"name":"id","value":"almaty"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Almaty"},{"name":"iana_name","value":"Asia/Almaty"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-almaty"},{"href":"http://localhost:3000/time_zones/astana","data":[{"name":"id","value":"astana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Astana"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-astana"},{"href":"http://localhost:3000/time_zones/dhaka","data":[{"name":"id","value":"dhaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dhaka"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-dhaka"},{"href":"http://localhost:3000/time_zones/novosibirsk","data":[{"name":"id","value":"novosibirsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Novosibirsk"},{"name":"iana_name","value":"Asia/Novosibirsk"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-novosibirsk"},{"href":"http://localhost:3000/time_zones/urumqi","data":[{"name":"id","value":"urumqi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Urumqi"},{"name":"iana_name","value":"Asia/Urumqi"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-urumqi"},{"href":"http://localhost:3000/time_zones/rangoon","data":[{"name":"id","value":"rangoon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rangoon"},{"name":"iana_name","value":"Asia/Rangoon"},{"name":"offset","value":"+06:30"}],"rel":"TimeZone-rangoon"},{"href":"http://localhost:3000/time_zones/bangkok","data":[{"name":"id","value":"bangkok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bangkok"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-bangkok"},{"href":"http://localhost:3000/time_zones/hanoi","data":[{"name":"id","value":"hanoi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hanoi"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-hanoi"},{"href":"http://localhost:3000/time_zones/jakarta","data":[{"name":"id","value":"jakarta"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jakarta"},{"name":"iana_name","value":"Asia/Jakarta"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-jakarta"},{"href":"http://localhost:3000/time_zones/krasnoyarsk","data":[{"name":"id","value":"krasnoyarsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Krasnoyarsk"},{"name":"iana_name","value":"Asia/Krasnoyarsk"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-krasnoyarsk"},{"href":"http://localhost:3000/time_zones/beijing","data":[{"name":"id","value":"beijing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Beijing"},{"name":"iana_name","value":"Asia/Shanghai"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-beijing"},{"href":"http://localhost:3000/time_zones/chongqing","data":[{"name":"id","value":"chongqing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chongqing"},{"name":"iana_name","value":"Asia/Chongqing"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-chongqing"},{"href":"http://localhost:3000/time_zones/hong-kong","data":[{"name":"id","value":"hong-kong"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hong
|
362
|
+
Kong"},{"name":"iana_name","value":"Asia/Hong_Kong"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-hong-kong"},{"href":"http://localhost:3000/time_zones/irkutsk","data":[{"name":"id","value":"irkutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Irkutsk"},{"name":"iana_name","value":"Asia/Irkutsk"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-irkutsk"},{"href":"http://localhost:3000/time_zones/kuala-lumpur","data":[{"name":"id","value":"kuala-lumpur"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuala
|
363
|
+
Lumpur"},{"name":"iana_name","value":"Asia/Kuala_Lumpur"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-kuala-lumpur"},{"href":"http://localhost:3000/time_zones/perth","data":[{"name":"id","value":"perth"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Perth"},{"name":"iana_name","value":"Australia/Perth"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-perth"},{"href":"http://localhost:3000/time_zones/singapore","data":[{"name":"id","value":"singapore"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Singapore"},{"name":"iana_name","value":"Asia/Singapore"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-singapore"},{"href":"http://localhost:3000/time_zones/taipei","data":[{"name":"id","value":"taipei"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Taipei"},{"name":"iana_name","value":"Asia/Taipei"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-taipei"},{"href":"http://localhost:3000/time_zones/ulaanbaatar","data":[{"name":"id","value":"ulaanbaatar"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ulaanbaatar"},{"name":"iana_name","value":"Asia/Ulaanbaatar"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-ulaanbaatar"},{"href":"http://localhost:3000/time_zones/osaka","data":[{"name":"id","value":"osaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Osaka"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-osaka"},{"href":"http://localhost:3000/time_zones/sapporo","data":[{"name":"id","value":"sapporo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sapporo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-sapporo"},{"href":"http://localhost:3000/time_zones/seoul","data":[{"name":"id","value":"seoul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Seoul"},{"name":"iana_name","value":"Asia/Seoul"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-seoul"},{"href":"http://localhost:3000/time_zones/tokyo","data":[{"name":"id","value":"tokyo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokyo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-tokyo"},{"href":"http://localhost:3000/time_zones/yakutsk","data":[{"name":"id","value":"yakutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yakutsk"},{"name":"iana_name","value":"Asia/Yakutsk"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-yakutsk"},{"href":"http://localhost:3000/time_zones/adelaide","data":[{"name":"id","value":"adelaide"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Adelaide"},{"name":"iana_name","value":"Australia/Adelaide"},{"name":"offset","value":"+09:30"}],"rel":"TimeZone-adelaide"},{"href":"http://localhost:3000/time_zones/darwin","data":[{"name":"id","value":"darwin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Darwin"},{"name":"iana_name","value":"Australia/Darwin"},{"name":"offset","value":"+09:30"}],"rel":"TimeZone-darwin"},{"href":"http://localhost:3000/time_zones/brisbane","data":[{"name":"id","value":"brisbane"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brisbane"},{"name":"iana_name","value":"Australia/Brisbane"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-brisbane"},{"href":"http://localhost:3000/time_zones/canberra","data":[{"name":"id","value":"canberra"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Canberra"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-canberra"},{"href":"http://localhost:3000/time_zones/guam","data":[{"name":"id","value":"guam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Guam"},{"name":"iana_name","value":"Pacific/Guam"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-guam"},{"href":"http://localhost:3000/time_zones/hobart","data":[{"name":"id","value":"hobart"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hobart"},{"name":"iana_name","value":"Australia/Hobart"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-hobart"},{"href":"http://localhost:3000/time_zones/magadan","data":[{"name":"id","value":"magadan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Magadan"},{"name":"iana_name","value":"Asia/Magadan"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-magadan"},{"href":"http://localhost:3000/time_zones/melbourne","data":[{"name":"id","value":"melbourne"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Melbourne"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-melbourne"},{"href":"http://localhost:3000/time_zones/port-moresby","data":[{"name":"id","value":"port-moresby"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Port
|
364
|
+
Moresby"},{"name":"iana_name","value":"Pacific/Port_Moresby"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-port-moresby"},{"href":"http://localhost:3000/time_zones/sydney","data":[{"name":"id","value":"sydney"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sydney"},{"name":"iana_name","value":"Australia/Sydney"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-sydney"},{"href":"http://localhost:3000/time_zones/vladivostok","data":[{"name":"id","value":"vladivostok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vladivostok"},{"name":"iana_name","value":"Asia/Vladivostok"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-vladivostok"},{"href":"http://localhost:3000/time_zones/new-caledonia","data":[{"name":"id","value":"new-caledonia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
365
|
+
Caledonia"},{"name":"iana_name","value":"Pacific/Noumea"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-new-caledonia"},{"href":"http://localhost:3000/time_zones/solomon-is","data":[{"name":"id","value":"solomon-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Solomon
|
366
|
+
Is."},{"name":"iana_name","value":"Pacific/Guadalcanal"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-solomon-is"},{"href":"http://localhost:3000/time_zones/auckland","data":[{"name":"id","value":"auckland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Auckland"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-auckland"},{"href":"http://localhost:3000/time_zones/fiji","data":[{"name":"id","value":"fiji"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Fiji"},{"name":"iana_name","value":"Pacific/Fiji"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-fiji"},{"href":"http://localhost:3000/time_zones/kamchatka","data":[{"name":"id","value":"kamchatka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kamchatka"},{"name":"iana_name","value":"Asia/Kamchatka"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-kamchatka"},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
|
367
|
+
Is."},{"name":"iana_name","value":"Pacific/Majuro"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-marshall-is"},{"href":"http://localhost:3000/time_zones/wellington","data":[{"name":"id","value":"wellington"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Wellington"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-wellington"},{"href":"http://localhost:3000/time_zones/chatham-is","data":[{"name":"id","value":"chatham-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chatham
|
368
|
+
Is."},{"name":"iana_name","value":"Pacific/Chatham"},{"name":"offset","value":"+12:45"}],"rel":"TimeZone-chatham-is"},{"href":"http://localhost:3000/time_zones/nuku-alofa","data":[{"name":"id","value":"nuku-alofa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nuku''alofa"},{"name":"iana_name","value":"Pacific/Tongatapu"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-nuku-alofa"},{"href":"http://localhost:3000/time_zones/tokelau-is","data":[{"name":"id","value":"tokelau-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokelau
|
369
|
+
Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tracked_item_statuses","template":{"data":[{"name":"status_code","value":null},{"name":"tracked_item_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tracked_item_statuses"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_item_statuses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"tracked_item_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tracked_items","template":{"data":[{"name":"name","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tracked_items"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_items/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tsl_metadata","template":{"data":[{"name":"user_id","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tsl_metadata"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/users","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"password","value":null},{"name":"birthday","value":null},{"name":"email","value":null},{"name":"facebook_id","value":null},{"name":"facebook_access_token","value":null}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//users"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null}]}]}}]'
|
370
|
+
http_version: '1.1'
|
371
|
+
adapter_metadata:
|
372
|
+
effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=61023c18-4713-443b-ba72-327e12fd7467&hmac_timestamp=1444788589
|
373
|
+
recorded_at: Wed, 14 Oct 2015 02:09:49 GMT
|
2538
374
|
recorded_with: VCR 2.9.3
|