teamsnap_rb 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/teamsnap.rb +9 -1
- data/lib/teamsnap/client.rb +12 -14
- data/lib/teamsnap/version.rb +1 -1
- data/spec/cassettes/apiv3-init.yml +431 -490
- data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/correctly_sets_the_ghost_header_flag.yml +859 -0
- data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/won_t_set_feature_headers_without_the_header_variable_present.yml +858 -0
- data/spec/teamsnap/client_spec.rb +26 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05b21d8569d8ef2a130c003ff8188f8622928e51
|
4
|
+
data.tar.gz: 4da3fffab058fd2156f579156625f8db35c8430e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a46f3737074b518711ee84f2620b8ef4c7c2b2b14a05adbe734767d8b6235de04f3eea795a98b2991e59ca9d0699aef232cffab3c2b5ff4335b2476b5f86a65
|
7
|
+
data.tar.gz: 5ea3af3b19bd48f69b8d35265c63a14e66e330f9ca4d61b4b3bc3ba23cbcefb42b1d534768b3240bc7b7889c151112f4ec483deff5200a03de3a97e76658e7d4
|
data/CHANGELOG.md
CHANGED
@@ -60,3 +60,8 @@ v2.0.0
|
|
60
60
|
------
|
61
61
|
|
62
62
|
- Drop support for Ruby < 2. Updates rspec gem. Drops beta tag.
|
63
|
+
|
64
|
+
[v2.1.0](https://github.com/teamsnap/teamsnap_rb/pull/97)
|
65
|
+
------
|
66
|
+
|
67
|
+
- Add in the ability to specify a header option when creating a new client. This feature is primarily to be used to support feature flags.
|
data/lib/teamsnap.rb
CHANGED
@@ -18,7 +18,8 @@ module TeamSnap
|
|
18
18
|
InitializationError = Class.new(TeamSnap::Error)
|
19
19
|
|
20
20
|
class << self
|
21
|
-
attr_accessor :client_id, :client_secret, :root_client, :token, :url
|
21
|
+
attr_accessor :client_id, :client_secret, :root_client, :token, :url,
|
22
|
+
:headers
|
22
23
|
|
23
24
|
def init(opts = {})
|
24
25
|
unless opts[:token] || (opts[:client_id] && opts[:client_secret])
|
@@ -34,6 +35,13 @@ module TeamSnap
|
|
34
35
|
## create universally accessible TeamSnap.root_client
|
35
36
|
self.root_client = TeamSnap::Client.new(:token => token)
|
36
37
|
|
38
|
+
## include any feature headers
|
39
|
+
if opts[:headers]
|
40
|
+
if headers = opts.fetch(:headers)
|
41
|
+
self.root_client.headers = self.root_client.headers.merge(headers)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
37
45
|
## Make the apiv3 root call. collection is parsed JSON
|
38
46
|
collection = TeamSnap.run(root_client, :get, self.url, {}) do
|
39
47
|
self.root_client = nil
|
data/lib/teamsnap/client.rb
CHANGED
@@ -1,19 +1,18 @@
|
|
1
1
|
module TeamSnap
|
2
2
|
class Client
|
3
|
-
|
4
3
|
class << self
|
5
4
|
def set_faraday_client(url, token, client_id, client_secret)
|
6
5
|
Faraday.new(
|
7
6
|
:url => url,
|
8
7
|
:parallel_manager => Typhoeus::Hydra.new
|
9
|
-
) do |
|
10
|
-
|
11
|
-
|
8
|
+
) do |con|
|
9
|
+
con.request :multipart
|
10
|
+
con.request :teamsnap_auth_middleware, {
|
12
11
|
:token => token,
|
13
12
|
:client_id => client_id,
|
14
13
|
:client_secret => client_secret
|
15
14
|
}
|
16
|
-
|
15
|
+
con.adapter :typhoeus
|
17
16
|
end
|
18
17
|
end
|
19
18
|
end
|
@@ -21,16 +20,16 @@ module TeamSnap
|
|
21
20
|
attr_accessor :faraday_client
|
22
21
|
|
23
22
|
def initialize(opts = {})
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
23
|
+
con_url = opts.fetch(:url) {}
|
24
|
+
con_token = opts.fetch(:token) {}
|
25
|
+
con_id = opts.fetch(:client_id) {}
|
26
|
+
con_secret = opts.fetch(:client_secret) {}
|
28
27
|
|
29
28
|
self.faraday_client = TeamSnap::Client.set_faraday_client(
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
29
|
+
con_url || TeamSnap.url,
|
30
|
+
con_token,
|
31
|
+
con_id || TeamSnap.client_id,
|
32
|
+
con_secret || TeamSnap.client_secret,
|
34
33
|
)
|
35
34
|
end
|
36
35
|
|
@@ -47,6 +46,5 @@ module TeamSnap
|
|
47
46
|
TeamSnap::Api.template_args?(method)
|
48
47
|
)
|
49
48
|
end
|
50
|
-
|
51
49
|
end
|
52
50
|
end
|
data/lib/teamsnap/version.rb
CHANGED
@@ -2,15 +2,19 @@
|
|
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=b7ee126a-5db6-4410-876c-d6c16a43bca7&hmac_timestamp=1502318909
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.
|
11
|
+
- Faraday v0.11.0
|
12
|
+
X-Teamsnap-Api-Features:
|
13
|
+
- ghost_contact
|
12
14
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
15
|
+
- 40db7abb383614b878788ec211d6f3ad01f53eb6601e5b169f20496e97303722
|
16
|
+
Expect:
|
17
|
+
- ''
|
14
18
|
response:
|
15
19
|
status:
|
16
20
|
code: 200
|
@@ -19,24 +23,31 @@ http_interactions:
|
|
19
23
|
Content-Type:
|
20
24
|
- application/vnd.collection+json
|
21
25
|
Content-Length:
|
22
|
-
- '
|
26
|
+
- '12973'
|
23
27
|
X-Content-Type-Options:
|
24
28
|
- nosniff
|
25
29
|
ETag:
|
26
|
-
-
|
30
|
+
- W/"96a31d3f5103be6c852dba6baf3f276b"
|
27
31
|
Cache-Control:
|
28
32
|
- max-age=0, private, must-revalidate
|
29
33
|
X-Request-Id:
|
30
|
-
-
|
34
|
+
- 01c6541a-f359-484c-b2b5-e1a06e1e78ce
|
31
35
|
X-Runtime:
|
32
|
-
- '
|
36
|
+
- '5.819312'
|
33
37
|
Connection:
|
34
38
|
- keep-alive
|
35
39
|
Server:
|
36
40
|
- thin
|
37
41
|
body:
|
38
42
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
43
|
+
string: '{"collection":{"version":"3.520.0","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004","prompt":"authorization
|
44
|
+
is deprecated and will be removed in a future version, use authorization_root
|
45
|
+
instead."},{"rel":"authorization_root","href":"http://localhost:3004"},{"rel":"authorization_magic_links","href":"http://localhost:3004/magic_links"},{"rel":"authorization_password_resets","href":"http://localhost:3004/password_resets"},{"rel":"authorization_tokens","href":"http://localhost:3004/oauth/token"},{"rel":"authorization_user_registrations","href":"http://localhost:3004/user_registrations"},{"rel":"authorization_user_registration_initializations","href":"http://localhost:3004/user_registration_initializations"},{"rel":"authorization_users","href":"http://localhost:3004/users"},{"rel":"apple_paid_features","href":"http://localhost:3000/apple_paid_features"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"batch_invoices","href":"http://localhost:3000/batch_invoices"},{"rel":"batch_invoice_line_items","href":"http://localhost:3000/batch_invoice_line_items"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_aggregates","href":"http://localhost:3000/division_aggregates"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_rate_packages","href":"http://localhost:3000/division_rate_packages"},{"rel":"division_events_imports","href":"http://localhost:3000/division_events_imports"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"experiments","href":"http://localhost:3000/experiments"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages","prompt":"%{old}
|
46
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"invitations","href":"http://localhost:3000/invitations"},{"rel":"invoices","href":"http://localhost:3000/invoices"},{"rel":"invoice_line_items","href":"http://localhost:3000/invoice_line_items"},{"rel":"invoice_recipients","href":"http://localhost:3000/invoice_recipients"},{"rel":"invoice_transactions","href":"http://localhost:3000/invoice_transactions"},{"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_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"member_email_addresses
|
47
|
+
is deprecated and will be removed in a future version, use contact_email_addresses
|
48
|
+
instead."},{"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","prompt":"member_phone_numbers
|
49
|
+
is deprecated and will be removed in a future version, use contact_phone_numbers
|
50
|
+
instead."},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_method_wepay_credit_cards","href":"http://localhost:3000/payment_method_wepay_credit_cards"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"payment_providers","href":"http://localhost:3000/payment_providers"},{"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":"registration_signup_statuses","href":"http://localhost:3000/registration_signup_statuses"},{"rel":"registration_forms","href":"http://localhost:3000/registration_forms"},{"rel":"registration_form_line_items","href":"http://localhost:3000/registration_form_line_items"},{"rel":"registration_form_line_item_options","href":"http://localhost:3000/registration_form_line_item_options"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"wepay_accounts","href":"http://localhost:3000/wepay_accounts"},{"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/?hmac_nonce=b7ee126a-5db6-4410-876c-d6c16a43bca7&hmac_timestamp=1502318909"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
40
51
|
a heterogeneous collection of the specified types for a specified team or
|
41
52
|
teams. Additional filters can be passed into requested types by passing them
|
42
53
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -66,19 +77,23 @@ http_interactions:
|
|
66
77
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
67
78
|
http_version: '1.1'
|
68
79
|
adapter_metadata:
|
69
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
70
|
-
recorded_at:
|
80
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=b7ee126a-5db6-4410-876c-d6c16a43bca7&hmac_timestamp=1502318909
|
81
|
+
recorded_at: Wed, 09 Aug 2017 22:48:36 GMT
|
71
82
|
- request:
|
72
83
|
method: get
|
73
|
-
uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=
|
84
|
+
uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916
|
74
85
|
body:
|
75
86
|
encoding: US-ASCII
|
76
87
|
string: ''
|
77
88
|
headers:
|
78
89
|
User-Agent:
|
79
|
-
- Faraday v0.
|
90
|
+
- Faraday v0.11.0
|
91
|
+
X-Teamsnap-Api-Features:
|
92
|
+
- ghost_contact
|
80
93
|
X-Teamsnap-Hmac:
|
81
|
-
-
|
94
|
+
- d153379d5c767a46d60bb760df98224f72932bf8c26e10bd0609041f5f7497c3
|
95
|
+
Expect:
|
96
|
+
- ''
|
82
97
|
response:
|
83
98
|
status:
|
84
99
|
code: 200
|
@@ -87,24 +102,31 @@ http_interactions:
|
|
87
102
|
Content-Type:
|
88
103
|
- application/json
|
89
104
|
Content-Length:
|
90
|
-
- '
|
105
|
+
- '183804'
|
91
106
|
X-Content-Type-Options:
|
92
107
|
- nosniff
|
93
108
|
ETag:
|
94
|
-
-
|
109
|
+
- W/"bda190619b8654b15210681f01e6dca6"
|
95
110
|
Cache-Control:
|
96
111
|
- max-age=0, private, must-revalidate
|
97
112
|
X-Request-Id:
|
98
|
-
-
|
113
|
+
- 5cc613b7-1ba8-4d7c-aa48-3b927a434f55
|
99
114
|
X-Runtime:
|
100
|
-
- '0.
|
115
|
+
- '0.299467'
|
101
116
|
Connection:
|
102
117
|
- keep-alive
|
103
118
|
Server:
|
104
119
|
- thin
|
105
120
|
body:
|
106
121
|
encoding: UTF-8
|
107
|
-
string: '[{"collection":{"version":"3.
|
122
|
+
string: '[{"collection":{"version":"3.520.0","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004","prompt":"authorization
|
123
|
+
is deprecated and will be removed in a future version, use authorization_root
|
124
|
+
instead."},{"rel":"authorization_root","href":"http://localhost:3004"},{"rel":"authorization_magic_links","href":"http://localhost:3004/magic_links"},{"rel":"authorization_password_resets","href":"http://localhost:3004/password_resets"},{"rel":"authorization_tokens","href":"http://localhost:3004/oauth/token"},{"rel":"authorization_user_registrations","href":"http://localhost:3004/user_registrations"},{"rel":"authorization_user_registration_initializations","href":"http://localhost:3004/user_registration_initializations"},{"rel":"authorization_users","href":"http://localhost:3004/users"},{"rel":"apple_paid_features","href":"http://localhost:3000/apple_paid_features"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"batch_invoices","href":"http://localhost:3000/batch_invoices"},{"rel":"batch_invoice_line_items","href":"http://localhost:3000/batch_invoice_line_items"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_aggregates","href":"http://localhost:3000/division_aggregates"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_rate_packages","href":"http://localhost:3000/division_rate_packages"},{"rel":"division_events_imports","href":"http://localhost:3000/division_events_imports"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"experiments","href":"http://localhost:3000/experiments"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages","prompt":"%{old}
|
125
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"invitations","href":"http://localhost:3000/invitations"},{"rel":"invoices","href":"http://localhost:3000/invoices"},{"rel":"invoice_line_items","href":"http://localhost:3000/invoice_line_items"},{"rel":"invoice_recipients","href":"http://localhost:3000/invoice_recipients"},{"rel":"invoice_transactions","href":"http://localhost:3000/invoice_transactions"},{"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_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"member_email_addresses
|
126
|
+
is deprecated and will be removed in a future version, use contact_email_addresses
|
127
|
+
instead."},{"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","prompt":"member_phone_numbers
|
128
|
+
is deprecated and will be removed in a future version, use contact_phone_numbers
|
129
|
+
instead."},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_method_wepay_credit_cards","href":"http://localhost:3000/payment_method_wepay_credit_cards"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"payment_providers","href":"http://localhost:3000/payment_providers"},{"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":"registration_signup_statuses","href":"http://localhost:3000/registration_signup_statuses"},{"rel":"registration_forms","href":"http://localhost:3000/registration_forms"},{"rel":"registration_form_line_items","href":"http://localhost:3000/registration_form_line_items"},{"rel":"registration_form_line_item_options","href":"http://localhost:3000/registration_form_line_item_options"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"wepay_accounts","href":"http://localhost:3000/wepay_accounts"},{"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/?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
108
130
|
a heterogeneous collection of the specified types for a specified team or
|
109
131
|
teams. Additional filters can be passed into requested types by passing them
|
110
132
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -131,232 +153,224 @@ http_interactions:
|
|
131
153
|
will use ''personas'' query on the ''members'' endpoint."}]},{"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}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
|
132
154
|
any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
|
133
155
|
a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
|
134
|
-
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}},{"collection":{"version":"3.
|
156
|
+
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/apple_paid_features","rel":"apple_paid_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/apple_paid_features?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/apple_paid_features/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
135
157
|
number of items to return for each page. Sending this parameter with the query
|
136
158
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
137
159
|
number of the page to be returned. This requires that paging be turned on
|
138
|
-
by also providing the page_size parameter."}]}],"
|
160
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/apn_devices","rel":"apn_devices","template":{"data":[{"name":"token","value":null},{"name":"app_version","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/apn_devices?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/apn_devices/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
161
|
+
number of items to return for each page. Sending this parameter with the query
|
162
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
163
|
+
number of the page to be returned. This requires that paging be turned on
|
164
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"send_push","href":"http://localhost:3000/apn_devices/send_push","data":[{"name":"device_token","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/assignments","rel":"assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"create_as_member_id","value":null},{"name":"member_id","value":null,"deprecated":true,"prompt":"member_id
|
139
165
|
is deprecated and has been removed. Continued use of member_id is not recommended
|
140
|
-
it will no longer be stored."},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"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},{"name":"page_size","value":null,"prompt":"The
|
166
|
+
it will no longer be stored."},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
141
167
|
number of items to return for each page. Sending this parameter with the query
|
142
168
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
143
169
|
number of the page to be returned. This requires that paging be turned on
|
144
|
-
by also providing the page_size parameter."}]}],"commands":[{"rel":"
|
170
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"create_bulk_assignments","href":"http://localhost:3000/assignments/create_bulk_assignments","prompt":"aaa","data":[{"name":"event_set","value":null,"prompt":"A
|
171
|
+
comma-delimited string of keywords and/or event_ids. Keywords include ''future_events'',
|
172
|
+
''future_games'', and ''future_games_and_events''"},{"name":"create_as_member_id","value":null,"prompt":"aaa"},{"name":"team_id","value":null,"prompt":"aaa"},{"name":"description","value":null,"prompt":"aaa"},{"name":"member_id","value":null,"prompt":"aaa"}]},{"rel":"send_assignment_emails","href":"http://localhost:3000/assignments/send_assignment_emails","prompt":"BETA:
|
145
173
|
(This endpoint subject to change) Notifies all members on the team via email
|
146
174
|
regarding upcoming event assignments.","data":[{"name":"event_ids","value":null,"prompt":"A
|
147
|
-
comma
|
175
|
+
comma-delimited list of event ids."},{"name":"message","value":null},{"name":"sending_member_id","value":null},{"name":"team_id","value":null}]},{"rel":"reorder_assignments","href":"http://localhost:3000/assignments/reorder","prompt":"reorder
|
176
|
+
the assignments based on the sorted_ids provided","data":[{"name":"event_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
177
|
+
array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/availabilities","rel":"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},{"name":"type","value":"availability"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","sort":["event_id","start_date"],"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},{"name":"page_size","value":null,"prompt":"The
|
148
178
|
number of items to return for each page. Sending this parameter with the query
|
149
179
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
150
180
|
number of the page to be returned. This requires that paging be turned on
|
151
|
-
by also providing the page_size parameter."}
|
181
|
+
by also providing the page_size parameter."},{"name":"sort_event_id","value":null,"prompt":"Sort
|
182
|
+
the returned dataset based on the event_id field, valid values are ''asc''
|
183
|
+
or ''desc''."},{"name":"sort_start_date","value":null,"prompt":"Sort the returned
|
184
|
+
dataset based on the start_date field, valid values are ''asc'' or ''desc''."}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
|
152
185
|
all future unset availabilities to specified status_code for the specified
|
153
|
-
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.
|
186
|
+
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/batch_invoices","rel":"batch_invoices","prompt":"Beta:
|
187
|
+
(This endpoint is subject to change) Returns batch invoices for a division","template":{"data":[{"name":"division_id","value":null},{"name":"title","value":null},{"name":"description","value":null},{"name":"due_at","value":null},{"name":"is_recipient_paying_transaction_fees","value":null},{"name":"type","value":"batch_invoice"}]},"links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"invoice_line_items","href":"http://localhost:3000/invoice_line_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/batch_invoices?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/batch_invoices/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
188
|
+
number of items to return for each page. Sending this parameter with the query
|
189
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
190
|
+
number of the page to be returned. This requires that paging be turned on
|
191
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/batch_invoice_line_items","rel":"batch_invoice_line_items","prompt":"Beta:
|
192
|
+
(This endpoint is subject to change) Returns batch invoice line items for
|
193
|
+
a batch invoice","template":{"data":[{"name":"batch_invoice_id","value":null},{"name":"invoice_category_id","value":null},{"name":"description","value":null},{"name":"quantity","value":null},{"name":"amount","value":null},{"name":"type","value":null}]},"links":[{"rel":"batch_invoice","href":"http://localhost:3000/batch_invoices"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/batch_invoice_line_items?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/batch_invoice_line_items/search","data":[{"name":"id","value":null},{"name":"batch_invoice_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
194
|
+
number of items to return for each page. Sending this parameter with the query
|
195
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
196
|
+
number of the page to be returned. This requires that paging be turned on
|
197
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/broadcast_email_attachments","rel":"broadcast_email_attachments","template":{"data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"caption","value":null},{"name":"file","value":null},{"name":"type","value":"broadcast_email_attachment"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
154
198
|
number of items to return for each page. Sending this parameter with the query
|
155
199
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
156
200
|
number of the page to be returned. This requires that paging be turned on
|
157
|
-
by also providing the page_size parameter."}]}],"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.
|
201
|
+
by also providing the page_size parameter."}]}],"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.520.0","href":"http://localhost:3000/broadcast_emails","rel":"broadcast_emails","template":{"data":[{"name":"attachments","value":null},{"name":"body","value":null},{"name":"from_email_address","value":null},{"name":"is_draft","value":null},{"name":"member_id","value":null},{"name":"contact_id","value":null},{"name":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null},{"name":"type","value":"broadcast_email"},{"name":"division_id","value":null},{"name":"recipient_division_ids","value":null},{"name":"recipient_team_ids","value":null},{"name":"recipient_manager_team_ids","value":null},{"name":"recipient_unnassigned","value":null},{"name":"recipient_all_commissioners","value":null},{"name":"is_league","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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","sort":["created_at"],"data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
158
202
|
number of items to return for each page. Sending this parameter with the query
|
159
203
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
160
204
|
number of the page to be returned. This requires that paging be turned on
|
161
205
|
by also providing the page_size parameter."},{"name":"sort_created_at","value":null,"prompt":"Sort
|
162
206
|
the returned dataset based on the created_at field, valid values are ''asc''
|
163
207
|
or ''desc''."}]}],"commands":[{"rel":"bulk_delete","href":"http://localhost:3000/broadcast_emails/bulk_delete","prompt":"Delete
|
164
|
-
several broadcast_emails with a single command.","data":[{"name":"id","value":null}]}
|
208
|
+
several broadcast_emails with a single command.","data":[{"name":"id","value":null}]},{"rel":"unflag_spam","href":"http://localhost:3000/broadcast_emails/unflag_spam","prompt":"Unflag
|
209
|
+
an email as spam, this is an internal command only accessible to internal
|
210
|
+
TeamSnap services.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/broadcast_alerts","rel":"broadcast_alerts","template":{"data":[{"name":"body","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"contact_id","value":null},{"name":"recipient_ids","value":null},{"name":"type","value":"broadcast_alert"}]},"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_alerts?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_alerts/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
165
211
|
number of items to return for each page. Sending this parameter with the query
|
166
212
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
167
213
|
number of the page to be returned. This requires that paging be turned on
|
168
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
214
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/contact_email_addresses","rel":"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},{"name":"type","value":"contact_email_address"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/contact_email_addresses/invite","prompt":"BETA:
|
215
|
+
Invite contact email addresses to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"contact_email_address_ids","value":null},{"name":"introduction","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/contact_phone_numbers","rel":"contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
|
216
|
+
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"contact_phone_number"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"member_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
169
217
|
number of items to return for each page. Sending this parameter with the query
|
170
218
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
171
219
|
number of the page to be returned. This requires that paging be turned on
|
172
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
173
|
-
is deprecated and will be removed in a future version, use
|
220
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/contacts","rel":"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,"deprecated":true,"prompt":"hide_address
|
221
|
+
is deprecated and will be removed in a future version, use is_address_hidden
|
222
|
+
instead."},{"name":"is_address_hidden","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null},{"name":"type","value":"contact"}]},"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"can_receive_push_notifications","value":null},{"name":"page_size","value":null,"prompt":"The
|
174
223
|
number of items to return for each page. Sending this parameter with the query
|
175
224
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
176
225
|
number of the page to be returned. This requires that paging be turned on
|
177
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
178
|
-
|
179
|
-
|
180
|
-
number of
|
181
|
-
|
182
|
-
number of
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
Federation"},{"name":"iso_alpha2_code","value":"RU"}],"rel":"country-643"},{"href":"http://localhost:3000/countries/646","data":[{"name":"id","value":"646"},{"name":"type","value":"country"},{"name":"name","value":"Rwanda"},{"name":"iso_alpha2_code","value":"RW"}],"rel":"country-646"},{"href":"http://localhost:3000/countries/682","data":[{"name":"id","value":"682"},{"name":"type","value":"country"},{"name":"name","value":"Saudi
|
239
|
-
Arabia"},{"name":"iso_alpha2_code","value":"SA"}],"rel":"country-682"},{"href":"http://localhost:3000/countries/090","data":[{"name":"id","value":"090"},{"name":"type","value":"country"},{"name":"name","value":"Solomon
|
240
|
-
Islands"},{"name":"iso_alpha2_code","value":"SB"}],"rel":"country-090"},{"href":"http://localhost:3000/countries/690","data":[{"name":"id","value":"690"},{"name":"type","value":"country"},{"name":"name","value":"Seychelles"},{"name":"iso_alpha2_code","value":"SC"}],"rel":"country-690"},{"href":"http://localhost:3000/countries/729","data":[{"name":"id","value":"729"},{"name":"type","value":"country"},{"name":"name","value":"Sudan"},{"name":"iso_alpha2_code","value":"SD"}],"rel":"country-729"},{"href":"http://localhost:3000/countries/752","data":[{"name":"id","value":"752"},{"name":"type","value":"country"},{"name":"name","value":"Sweden"},{"name":"iso_alpha2_code","value":"SE"}],"rel":"country-752"},{"href":"http://localhost:3000/countries/702","data":[{"name":"id","value":"702"},{"name":"type","value":"country"},{"name":"name","value":"Singapore"},{"name":"iso_alpha2_code","value":"SG"}],"rel":"country-702"},{"href":"http://localhost:3000/countries/654","data":[{"name":"id","value":"654"},{"name":"type","value":"country"},{"name":"name","value":"Saint
|
241
|
-
Helena"},{"name":"iso_alpha2_code","value":"SH"}],"rel":"country-654"},{"href":"http://localhost:3000/countries/705","data":[{"name":"id","value":"705"},{"name":"type","value":"country"},{"name":"name","value":"Slovenia"},{"name":"iso_alpha2_code","value":"SI"}],"rel":"country-705"},{"href":"http://localhost:3000/countries/744","data":[{"name":"id","value":"744"},{"name":"type","value":"country"},{"name":"name","value":"Svalbard
|
242
|
-
And Jan Mayen"},{"name":"iso_alpha2_code","value":"SJ"}],"rel":"country-744"},{"href":"http://localhost:3000/countries/703","data":[{"name":"id","value":"703"},{"name":"type","value":"country"},{"name":"name","value":"Slovakia"},{"name":"iso_alpha2_code","value":"SK"}],"rel":"country-703"},{"href":"http://localhost:3000/countries/694","data":[{"name":"id","value":"694"},{"name":"type","value":"country"},{"name":"name","value":"Sierra
|
243
|
-
Leone"},{"name":"iso_alpha2_code","value":"SL"}],"rel":"country-694"},{"href":"http://localhost:3000/countries/674","data":[{"name":"id","value":"674"},{"name":"type","value":"country"},{"name":"name","value":"San
|
244
|
-
Marino"},{"name":"iso_alpha2_code","value":"SM"}],"rel":"country-674"},{"href":"http://localhost:3000/countries/686","data":[{"name":"id","value":"686"},{"name":"type","value":"country"},{"name":"name","value":"Senegal"},{"name":"iso_alpha2_code","value":"SN"}],"rel":"country-686"},{"href":"http://localhost:3000/countries/706","data":[{"name":"id","value":"706"},{"name":"type","value":"country"},{"name":"name","value":"Somalia"},{"name":"iso_alpha2_code","value":"SO"}],"rel":"country-706"},{"href":"http://localhost:3000/countries/740","data":[{"name":"id","value":"740"},{"name":"type","value":"country"},{"name":"name","value":"Suriname"},{"name":"iso_alpha2_code","value":"SR"}],"rel":"country-740"},{"href":"http://localhost:3000/countries/728","data":[{"name":"id","value":"728"},{"name":"type","value":"country"},{"name":"name","value":"South
|
245
|
-
Sudan"},{"name":"iso_alpha2_code","value":"SS"}],"rel":"country-728"},{"href":"http://localhost:3000/countries/678","data":[{"name":"id","value":"678"},{"name":"type","value":"country"},{"name":"name","value":"Sao
|
246
|
-
Tome and Principe"},{"name":"iso_alpha2_code","value":"ST"}],"rel":"country-678"},{"href":"http://localhost:3000/countries/222","data":[{"name":"id","value":"222"},{"name":"type","value":"country"},{"name":"name","value":"El
|
247
|
-
Salvador"},{"name":"iso_alpha2_code","value":"SV"}],"rel":"country-222"},{"href":"http://localhost:3000/countries/534","data":[{"name":"id","value":"534"},{"name":"type","value":"country"},{"name":"name","value":"Sint
|
248
|
-
Maarten"},{"name":"iso_alpha2_code","value":"SX"}],"rel":"country-534"},{"href":"http://localhost:3000/countries/760","data":[{"name":"id","value":"760"},{"name":"type","value":"country"},{"name":"name","value":"Syrian
|
249
|
-
Arab Republic"},{"name":"iso_alpha2_code","value":"SY"}],"rel":"country-760"},{"href":"http://localhost:3000/countries/748","data":[{"name":"id","value":"748"},{"name":"type","value":"country"},{"name":"name","value":"Swaziland"},{"name":"iso_alpha2_code","value":"SZ"}],"rel":"country-748"},{"href":"http://localhost:3000/countries/796","data":[{"name":"id","value":"796"},{"name":"type","value":"country"},{"name":"name","value":"Turks
|
250
|
-
and Caicos Islands"},{"name":"iso_alpha2_code","value":"TC"}],"rel":"country-796"},{"href":"http://localhost:3000/countries/148","data":[{"name":"id","value":"148"},{"name":"type","value":"country"},{"name":"name","value":"Chad"},{"name":"iso_alpha2_code","value":"TD"}],"rel":"country-148"},{"href":"http://localhost:3000/countries/260","data":[{"name":"id","value":"260"},{"name":"type","value":"country"},{"name":"name","value":"French
|
251
|
-
Southern Territories"},{"name":"iso_alpha2_code","value":"TF"}],"rel":"country-260"},{"href":"http://localhost:3000/countries/768","data":[{"name":"id","value":"768"},{"name":"type","value":"country"},{"name":"name","value":"Togo"},{"name":"iso_alpha2_code","value":"TG"}],"rel":"country-768"},{"href":"http://localhost:3000/countries/764","data":[{"name":"id","value":"764"},{"name":"type","value":"country"},{"name":"name","value":"Thailand"},{"name":"iso_alpha2_code","value":"TH"}],"rel":"country-764"},{"href":"http://localhost:3000/countries/762","data":[{"name":"id","value":"762"},{"name":"type","value":"country"},{"name":"name","value":"Tajikistan"},{"name":"iso_alpha2_code","value":"TJ"}],"rel":"country-762"},{"href":"http://localhost:3000/countries/772","data":[{"name":"id","value":"772"},{"name":"type","value":"country"},{"name":"name","value":"Tokelau"},{"name":"iso_alpha2_code","value":"TK"}],"rel":"country-772"},{"href":"http://localhost:3000/countries/626","data":[{"name":"id","value":"626"},{"name":"type","value":"country"},{"name":"name","value":"Timor-Leste"},{"name":"iso_alpha2_code","value":"TL"}],"rel":"country-626"},{"href":"http://localhost:3000/countries/795","data":[{"name":"id","value":"795"},{"name":"type","value":"country"},{"name":"name","value":"Turkmenistan"},{"name":"iso_alpha2_code","value":"TM"}],"rel":"country-795"},{"href":"http://localhost:3000/countries/788","data":[{"name":"id","value":"788"},{"name":"type","value":"country"},{"name":"name","value":"Tunisia"},{"name":"iso_alpha2_code","value":"TN"}],"rel":"country-788"},{"href":"http://localhost:3000/countries/776","data":[{"name":"id","value":"776"},{"name":"type","value":"country"},{"name":"name","value":"Tonga"},{"name":"iso_alpha2_code","value":"TO"}],"rel":"country-776"},{"href":"http://localhost:3000/countries/792","data":[{"name":"id","value":"792"},{"name":"type","value":"country"},{"name":"name","value":"Turkey"},{"name":"iso_alpha2_code","value":"TR"}],"rel":"country-792"},{"href":"http://localhost:3000/countries/780","data":[{"name":"id","value":"780"},{"name":"type","value":"country"},{"name":"name","value":"Trinidad
|
252
|
-
and Tobago"},{"name":"iso_alpha2_code","value":"TT"}],"rel":"country-780"},{"href":"http://localhost:3000/countries/798","data":[{"name":"id","value":"798"},{"name":"type","value":"country"},{"name":"name","value":"Tuvalu"},{"name":"iso_alpha2_code","value":"TV"}],"rel":"country-798"},{"href":"http://localhost:3000/countries/158","data":[{"name":"id","value":"158"},{"name":"type","value":"country"},{"name":"name","value":"Taiwan,
|
253
|
-
Republic Of China"},{"name":"iso_alpha2_code","value":"TW"}],"rel":"country-158"},{"href":"http://localhost:3000/countries/834","data":[{"name":"id","value":"834"},{"name":"type","value":"country"},{"name":"name","value":"Tanzania,
|
254
|
-
United Republic of"},{"name":"iso_alpha2_code","value":"TZ"}],"rel":"country-834"},{"href":"http://localhost:3000/countries/804","data":[{"name":"id","value":"804"},{"name":"type","value":"country"},{"name":"name","value":"Ukraine"},{"name":"iso_alpha2_code","value":"UA"}],"rel":"country-804"},{"href":"http://localhost:3000/countries/800","data":[{"name":"id","value":"800"},{"name":"type","value":"country"},{"name":"name","value":"Uganda"},{"name":"iso_alpha2_code","value":"UG"}],"rel":"country-800"},{"href":"http://localhost:3000/countries/581","data":[{"name":"id","value":"581"},{"name":"type","value":"country"},{"name":"name","value":"United
|
255
|
-
States Minor Outlying Islands"},{"name":"iso_alpha2_code","value":"UM"}],"rel":"country-581"},{"href":"http://localhost:3000/countries/840","data":[{"name":"id","value":"840"},{"name":"type","value":"country"},{"name":"name","value":"United
|
256
|
-
States"},{"name":"iso_alpha2_code","value":"US"}],"rel":"country-840"},{"href":"http://localhost:3000/countries/858","data":[{"name":"id","value":"858"},{"name":"type","value":"country"},{"name":"name","value":"Uruguay"},{"name":"iso_alpha2_code","value":"UY"}],"rel":"country-858"},{"href":"http://localhost:3000/countries/860","data":[{"name":"id","value":"860"},{"name":"type","value":"country"},{"name":"name","value":"Uzbekistan"},{"name":"iso_alpha2_code","value":"UZ"}],"rel":"country-860"},{"href":"http://localhost:3000/countries/336","data":[{"name":"id","value":"336"},{"name":"type","value":"country"},{"name":"name","value":"Holy
|
257
|
-
See (Vatican City State)"},{"name":"iso_alpha2_code","value":"VA"}],"rel":"country-336"},{"href":"http://localhost:3000/countries/670","data":[{"name":"id","value":"670"},{"name":"type","value":"country"},{"name":"name","value":"Saint
|
258
|
-
Vincent And The Grenedines"},{"name":"iso_alpha2_code","value":"VC"}],"rel":"country-670"},{"href":"http://localhost:3000/countries/862","data":[{"name":"id","value":"862"},{"name":"type","value":"country"},{"name":"name","value":"Venezuela,
|
259
|
-
Bolivarian Republic of"},{"name":"iso_alpha2_code","value":"VE"}],"rel":"country-862"},{"href":"http://localhost:3000/countries/092","data":[{"name":"id","value":"092"},{"name":"type","value":"country"},{"name":"name","value":"Virgin
|
260
|
-
Islands, British"},{"name":"iso_alpha2_code","value":"VG"}],"rel":"country-092"},{"href":"http://localhost:3000/countries/850","data":[{"name":"id","value":"850"},{"name":"type","value":"country"},{"name":"name","value":"Virgin
|
261
|
-
Islands, U.S."},{"name":"iso_alpha2_code","value":"VI"}],"rel":"country-850"},{"href":"http://localhost:3000/countries/704","data":[{"name":"id","value":"704"},{"name":"type","value":"country"},{"name":"name","value":"Vietnam"},{"name":"iso_alpha2_code","value":"VN"}],"rel":"country-704"},{"href":"http://localhost:3000/countries/548","data":[{"name":"id","value":"548"},{"name":"type","value":"country"},{"name":"name","value":"Vanuatu"},{"name":"iso_alpha2_code","value":"VU"}],"rel":"country-548"},{"href":"http://localhost:3000/countries/876","data":[{"name":"id","value":"876"},{"name":"type","value":"country"},{"name":"name","value":"Wallis
|
262
|
-
and Futuna"},{"name":"iso_alpha2_code","value":"WF"}],"rel":"country-876"},{"href":"http://localhost:3000/countries/882","data":[{"name":"id","value":"882"},{"name":"type","value":"country"},{"name":"name","value":"Samoa"},{"name":"iso_alpha2_code","value":"WS"}],"rel":"country-882"},{"href":"http://localhost:3000/countries/887","data":[{"name":"id","value":"887"},{"name":"type","value":"country"},{"name":"name","value":"Yemen"},{"name":"iso_alpha2_code","value":"YE"}],"rel":"country-887"},{"href":"http://localhost:3000/countries/175","data":[{"name":"id","value":"175"},{"name":"type","value":"country"},{"name":"name","value":"Mayotte"},{"name":"iso_alpha2_code","value":"YT"}],"rel":"country-175"},{"href":"http://localhost:3000/countries/710","data":[{"name":"id","value":"710"},{"name":"type","value":"country"},{"name":"name","value":"South
|
263
|
-
Africa"},{"name":"iso_alpha2_code","value":"ZA"}],"rel":"country-710"},{"href":"http://localhost:3000/countries/894","data":[{"name":"id","value":"894"},{"name":"type","value":"country"},{"name":"name","value":"Zambia"},{"name":"iso_alpha2_code","value":"ZM"}],"rel":"country-894"},{"href":"http://localhost:3000/countries/716","data":[{"name":"id","value":"716"},{"name":"type","value":"country"},{"name":"name","value":"Zimbabwe"},{"name":"iso_alpha2_code","value":"ZW"}],"rel":"country-716"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/custom_data","rel":"custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null},{"name":"type","value":"custom_datum"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
264
|
-
number of items to return for each page. Sending this parameter with the query
|
265
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
266
|
-
number of the page to be returned. This requires that paging be turned on
|
267
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/custom_fields","rel":"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},{"name":"type","value":"custom_field"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
268
|
-
number of items to return for each page. Sending this parameter with the query
|
269
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
270
|
-
number of the page to be returned. This requires that paging be turned on
|
271
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/league_custom_data","rel":"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},{"name":"type","value":"league_custom_datum"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
272
|
-
number of items to return for each page. Sending this parameter with the query
|
273
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
274
|
-
number of the page to be returned. This requires that paging be turned on
|
275
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/league_custom_fields","rel":"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},{"name":"page_size","value":null,"prompt":"The
|
276
|
-
number of items to return for each page. Sending this parameter with the query
|
277
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
278
|
-
number of the page to be returned. This requires that paging be turned on
|
279
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/divisions","rel":"divisions","template":{"data":[{"name":"type","value":"division"},{"name":"parent_id","value":null},{"name":"name","value":null},{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/divisions"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"parent_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
280
|
-
number of items to return for each page. Sending this parameter with the query
|
281
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
282
|
-
number of the page to be returned. This requires that paging be turned on
|
283
|
-
by also providing the page_size parameter."}]},{"rel":"ancestors","href":"http://localhost:3000/divisions/ancestors","prompt":"Beta:
|
284
|
-
(This endpoint subject to change) Returns all the nested set ancestors of
|
285
|
-
the given division.","data":[{"name":"id","value":null}]},{"rel":"descendants","href":"http://localhost:3000/divisions/descendants","prompt":"Beta:
|
286
|
-
(This endpoint subject to change) Returns all the nested set descendants of
|
287
|
-
the given division.","data":[{"name":"id","value":null}]},{"rel":"children","href":"http://localhost:3000/divisions/children","prompt":"Beta:
|
288
|
-
(This endpoint subject to change) Returns all the nested set children of the
|
289
|
-
given division.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/division_contact_email_addresses","rel":"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},{"name":"type","value":"division_contact_email_address"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"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},{"name":"page_size","value":null,"prompt":"The
|
290
|
-
number of items to return for each page. Sending this parameter with the query
|
291
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
292
|
-
number of the page to be returned. This requires that paging be turned on
|
293
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/division_contact_phone_numbers","rel":"division_contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
|
294
|
-
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_contact_phone_number"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"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},{"name":"page_size","value":null,"prompt":"The
|
295
|
-
number of items to return for each page. Sending this parameter with the query
|
296
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
297
|
-
number of the page to be returned. This requires that paging be turned on
|
298
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/division_contacts","rel":"division_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,"deprecated":true,"prompt":"hide_address
|
226
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/countries","rel":"countries","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/countries?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/countries/search","data":[{"name":"id","value":null},{"name":"name","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/custom_data","rel":"custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null},{"name":"type","value":"custom_datum"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
227
|
+
number of items to return for each page. Sending this parameter with the query
|
228
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
229
|
+
number of the page to be returned. This requires that paging be turned on
|
230
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/custom_fields","rel":"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},{"name":"type","value":"custom_field"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
231
|
+
number of items to return for each page. Sending this parameter with the query
|
232
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
233
|
+
number of the page to be returned. This requires that paging be turned on
|
234
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/league_custom_data","rel":"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},{"name":"type","value":"league_custom_datum"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
235
|
+
number of items to return for each page. Sending this parameter with the query
|
236
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
237
|
+
number of the page to be returned. This requires that paging be turned on
|
238
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/league_custom_fields","rel":"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
239
|
+
number of items to return for each page. Sending this parameter with the query
|
240
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
241
|
+
number of the page to be returned. This requires that paging be turned on
|
242
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder","href":"http://localhost:3000/league_custom_fields/reorder","prompt":"Given
|
243
|
+
`sorted_ids` (array) ordered in relation to the field''s desired `position`,
|
244
|
+
sorts fields by assigning new `position` values relative to the field index
|
245
|
+
in the `sorted_ids` array.","data":[{"name":"sorted_ids","value":null},{"name":"division_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/divisions","prompt":"Divisions
|
246
|
+
are used to represent our leagues. They are organized into a hierarchical
|
247
|
+
tree data structure and stored as nested sets. Each set is grouped by its
|
248
|
+
''root_id'' which is the ''division_id'' of the root node of that league tree.","rel":"divisions","template":{"data":[{"name":"type","value":"division"},{"name":"parent_id","value":null},{"name":"name","value":null},{"name":"billing_address","value":null},{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"season_name","value":null},{"name":"parent_division_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"registration_forms","href":"http://localhost:3000/registration_forms"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/divisions?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions/search","data":[{"name":"id","value":null},{"name":"persistent_uuid","value":null},{"name":"user_id","value":null},{"name":"parent_id","value":null},{"name":"is_root","value":null},{"name":"is_trial","value":null},{"name":"page_size","value":null,"prompt":"The
|
249
|
+
number of items to return for each page. Sending this parameter with the query
|
250
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
251
|
+
number of the page to be returned. This requires that paging be turned on
|
252
|
+
by also providing the page_size parameter."}]},{"rel":"ancestors","href":"http://localhost:3000/divisions/ancestors","prompt":"Returns
|
253
|
+
all the nested set ancestors of the given division.","data":[{"name":"id","value":null}]},{"rel":"descendants","href":"http://localhost:3000/divisions/descendants","prompt":"Returns
|
254
|
+
all the nested set descendants of the given division.","data":[{"name":"id","value":null}]},{"rel":"children","href":"http://localhost:3000/divisions/children","prompt":"Returns
|
255
|
+
all the nested set children of the given division.","data":[{"name":"id","value":null},{"name":"is_archived","value":null},{"name":"is_disabled","value":null}]},{"rel":"leaves","href":"http://localhost:3000/divisions/children","prompt":"Beta:
|
256
|
+
(This endpoint subject to change) Returns all the nested set leaves of the
|
257
|
+
given division. A leaf is a division that has no child divisions.","data":[{"name":"id","value":null}]},{"rel":"active_trials","href":"http://localhost:3000/divisions/active_trials","prompt":"Finds
|
258
|
+
all active trial divisions for a given user. Excludes archived and disabled
|
259
|
+
divisions.","data":[{"name":"user_id","value":null}]},{"rel":"active_divisions","href":"http://localhost:3000/divisions/active","prompt":"Finds
|
260
|
+
all active root divisions for a given owner or commissioner. Excludes archived
|
261
|
+
and disabled divisions.","data":[{"name":"user_id","value":null}]},{"rel":"tree","href":"http://localhost:3000/divisions/tree","prompt":"Beta:
|
262
|
+
(This endpoint subject to change) Return the ancestors, the division and the
|
263
|
+
children divisions.","data":[{"name":"id","value":null}]}],"commands":[{"rel":"create_root","href":"http://localhost:3000/divisions/create_root","prompt":"Create
|
264
|
+
root divisions, this is an internal command only accessible to internal TeamSnap
|
265
|
+
services.","data":[{"name":"name","value":null},{"name":"sport_id","value":null},{"name":"country","value":null},{"name":"time_zone","value":null},{"name":"postal_code","value":null},{"name":"teams_in_plan","value":null},{"name":"league_owner_email","value":null},{"name":"league_owner_phone_number","value":null},{"name":"league_owner_first_name","value":null},{"name":"league_owner_last_name","value":null}]},{"rel":"update_plan","href":"http://localhost:3000/divisions/update_plan","prompt":"Update
|
266
|
+
the root division''s plan or number of teams (teams_in_plan). This is an internal
|
267
|
+
command only accessible to internal TeamSnap services.","data":[{"name":"division_id","value":null},{"name":"persistent_uuid","value":null},{"name":"plan_id","value":null},{"name":"teams_in_plan","value":null}]},{"rel":"enable","href":"http://localhost:3000/divisions/enable","prompt":"Enable
|
268
|
+
a root division. This is an internal command only accessible to internal TeamSnap
|
269
|
+
services.","data":[{"name":"division_id","value":null},{"name":"persistent_uuid","value":null}]},{"rel":"disable","href":"http://localhost:3000/divisions/disable","prompt":"Disable
|
270
|
+
a root division. This is an internal command only accessible to internal TeamSnap
|
271
|
+
services.","data":[{"name":"division_id","value":null},{"name":"persistent_uuid","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_aggregates","rel":"division_aggregates","prompt":"BETA:
|
272
|
+
(This endpoint subject to change) Returns a collection of aggregated numbers
|
273
|
+
around a division and it''s descendants.","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_aggregates?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_aggregates/search","data":[{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
274
|
+
number of items to return for each page. Sending this parameter with the query
|
275
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
276
|
+
number of the page to be returned. This requires that paging be turned on
|
277
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_contact_email_addresses","rel":"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},{"name":"type","value":"division_contact_email_address"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
278
|
+
number of items to return for each page. Sending this parameter with the query
|
279
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
280
|
+
number of the page to be returned. This requires that paging be turned on
|
281
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_contact_phone_numbers","rel":"division_contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
|
282
|
+
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_contact_phone_number"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
283
|
+
number of items to return for each page. Sending this parameter with the query
|
284
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
285
|
+
number of the page to be returned. This requires that paging be turned on
|
286
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_contacts","rel":"division_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,"deprecated":true,"prompt":"hide_address
|
299
287
|
is deprecated and will be removed in a future version, use is_address_hidden
|
300
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null},{"name":"type","value":"division_contact"}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"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_member","href":"http://localhost:3000/division_members"},{"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/division_contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
288
|
+
instead."},{"name":"is_address_hidden","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null},{"name":"type","value":"division_contact"}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"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_member","href":"http://localhost:3000/division_members"},{"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/division_contacts?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
301
289
|
number of items to return for each page. Sending this parameter with the query
|
302
290
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
303
291
|
number of the page to be returned. This requires that paging be turned on
|
304
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
292
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_events","rel":"division_events","prompt":"BETA:
|
305
293
|
(This endpoint subject to change) Returns a collection associated with a division''s
|
306
|
-
events","template":{"data":[{"name":"event_type","value":"event"},{"name":"duration_in_minutes","value":null},{"name":"duration_in_hours","value":null},{"name":"icon_color","value":null},{"name":"is_canceled","value":null},{"name":"is_tbd","value":null},{"name":"label","value":null},{"name":"location_id","value":null},{"name":"
|
294
|
+
events","template":{"data":[{"name":"event_type","value":"event"},{"name":"duration_in_minutes","value":null},{"name":"duration_in_hours","value":null},{"name":"icon_color","value":null},{"name":"is_canceled","value":null},{"name":"is_tbd","value":null},{"name":"label","value":null},{"name":"location_id","value":null},{"name":"additional_location_details","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"name","value":null},{"name":"notes","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"opponent_id","value":null},{"name":"start_date","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null},{"name":"time_zone","value":null},{"name":"game_type_code","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"is_editing_restricted","value":null,"prompt":"This
|
295
|
+
is an optional boolean value. When set to `true`, the created event will only
|
296
|
+
be editable by the oauth application that created the event. This option is
|
297
|
+
restricted to first-party applicaitons"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_event_import","href":"http://localhost:3000/division_events_imports"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"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/division_events?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_events/search","sort":["start_date"],"data":[{"name":"division_id","value":null},{"name":"id","value":null},{"name":"division_event_import_id","value":null},{"name":"division_location_id","value":null},{"name":"started_after","value":null},{"name":"is_game","value":null},{"name":"repeating_uuid","value":null},{"name":"page_size","value":null,"prompt":"The
|
307
298
|
number of items to return for each page. Sending this parameter with the query
|
308
299
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
309
300
|
number of the page to be returned. This requires that paging be turned on
|
310
301
|
by also providing the page_size parameter."},{"name":"sort_start_date","value":null,"prompt":"Sort
|
311
302
|
the returned dataset based on the start_date field, valid values are ''asc''
|
312
|
-
or ''desc''."}]}]}},{"collection":{"version":"3.
|
303
|
+
or ''desc''."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_locations","rel":"division_locations","template":{"data":[{"name":"name","value":null},{"name":"url","value":null},{"name":"phone","value":null},{"name":"notes","value":null},{"name":"address","value":null},{"name":"division_id","value":null},{"name":"type","value":"division_location"}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_locations?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_locations/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
313
304
|
number of items to return for each page. Sending this parameter with the query
|
314
305
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
315
306
|
number of the page to be returned. This requires that paging be turned on
|
316
307
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"import_from_division","href":"http://localhost:3000/division_locations/import_from_division","prompt":"Copy
|
317
|
-
the specified ''source_division_location_ids'' to the specified ''destination_division_id''.","data":[{"name":"destination_division_id","value":null},{"name":"source_location_ids","value":null}]}]}},{"collection":{"version":"3.
|
308
|
+
the specified ''source_division_location_ids'' to the specified ''destination_division_id''.","data":[{"name":"destination_division_id","value":null},{"name":"source_location_ids","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_member_email_addresses","rel":"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},{"name":"type","value":"division_member_email_address"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
318
309
|
number of items to return for each page. Sending this parameter with the query
|
319
310
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
320
311
|
number of the page to be returned. This requires that paging be turned on
|
321
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
322
|
-
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_member_phone_number"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
312
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_member_phone_numbers","rel":"division_member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
|
313
|
+
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_member_phone_number"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
323
314
|
number of items to return for each page. Sending this parameter with the query
|
324
315
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
325
316
|
number of the page to be returned. This requires that paging be turned on
|
326
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
317
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_members","rel":"division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
|
327
318
|
a division member by the id of the team they are a commissioner of."},{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"birthday_month","value":null,"prompt":"Find
|
328
319
|
a division member by the month of their birthday."},{"name":"is_commissioner","value":null},{"name":"is_ownership_pending","value":null},{"name":"is_unassigned","value":null},{"name":"page_size","value":null,"prompt":"The
|
329
320
|
number of items to return for each page. Sending this parameter with the query
|
330
321
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
331
322
|
number of the page to be returned. This requires that paging be turned on
|
332
|
-
by also providing the page_size parameter."}]}],"links":[{"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":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_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_member_preferences","href":"http://localhost:3000/division_members_preferences"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}},{"collection":{"version":"3.
|
323
|
+
by also providing the page_size parameter."}]}],"links":[{"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":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_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_member_preferences","href":"http://localhost:3000/division_members_preferences"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_members_preferences","rel":"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_event","value":null,"deprecated":true,"prompt":"reminders_send_event
|
333
324
|
is deprecated and will be removed in a future version, use event_reminder_preference
|
334
325
|
instead."},{"name":"reminders_send_game","value":null,"deprecated":true,"prompt":"reminders_send_game
|
335
326
|
is deprecated and will be removed in a future version, use game_reminder_preference
|
336
|
-
instead."},{"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
|
327
|
+
instead."},{"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,"deprecated":true,"prompt":"facebook_post_scores
|
328
|
+
is deprecated and has been removed. Continued use of facebook_post_scores
|
329
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_page_id","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_page_id
|
330
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_page_id
|
331
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_page_name","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_page_name
|
332
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_page_name
|
333
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_wall","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_wall
|
334
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_wall
|
335
|
+
is not recommended it will no longer be stored."},{"name":"facebook_only_post_wins","value":null,"deprecated":true,"prompt":"facebook_only_post_wins
|
336
|
+
is deprecated and has been removed. Continued use of facebook_only_post_wins
|
337
|
+
is not recommended it will no longer be stored."},{"name":"facebook_polite_scores","value":null,"deprecated":true,"prompt":"facebook_polite_scores
|
338
|
+
is deprecated and has been removed. Continued use of facebook_polite_scores
|
339
|
+
is not recommended it will no longer be stored."},{"name":"facebook_page_access_token","value":null,"deprecated":true,"prompt":"facebook_page_access_token
|
340
|
+
is deprecated and has been removed. Continued use of facebook_page_access_token
|
341
|
+
is not recommended it will no longer be stored."},{"name":"game_reminder_preference","value":null,"prompt":"Valid
|
337
342
|
values are ''team'', ''member'' and ''none''."},{"name":"event_reminder_preference","value":null,"prompt":"Valid
|
338
|
-
values are ''team'', ''member'' and ''none''."},{"name":"type","value":"member_preferences"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
343
|
+
values are ''team'', ''member'' and ''none''."},{"name":"type","value":"member_preferences"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members_preferences?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
339
344
|
number of items to return for each page. Sending this parameter with the query
|
340
345
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
341
346
|
number of the page to be returned. This requires that paging be turned on
|
342
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
347
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_rate_packages","rel":"division_rate_packages","prompt":"BETA:
|
348
|
+
(This endpoint subject to change) Returns a collection associated with a division''s
|
349
|
+
rate packages.","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_rate_packages?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_rate_packages/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
350
|
+
number of items to return for each page. Sending this parameter with the query
|
351
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
352
|
+
number of the page to be returned. This requires that paging be turned on
|
353
|
+
by also providing the page_size parameter."}]},{"rel":"active","href":"http://localhost:3000/division_rate_packages/active","data":[{"name":"division_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_events_imports","rel":"division_events_imports","links":[{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_events_imports?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"commands":[{"rel":"create_events_import","href":"http://localhost:3000/division_events_imports/create_events_import","prompt":"Upload
|
343
354
|
CSV for importing events to a league/division","data":[{"name":"division_id","value":null},{"name":"file","value":null}]},{"rel":"delete_imported_events","href":"http://localhost:3000/division_events_imports/delete_imported_events","prompt":"Delete
|
344
355
|
events created from a previous division events import. Accepts id parameter
|
345
|
-
for import.","data":[{"name":"division_id","value":null},{"name":"division_events_import_id","value":null}]}
|
356
|
+
for import.","data":[{"name":"division_id","value":null},{"name":"division_events_import_id","value":null}]},{"rel":"process_import","href":"http://localhost:3000/division_events_imports/process_import","prompt":"Creates
|
357
|
+
league events from uploaded CSV file.","data":[{"name":"id","value":null}]}],"queries":[{"rel":"search","href":"http://localhost:3000/division_events_imports/search","data":[{"name":"division_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
346
358
|
number of items to return for each page. Sending this parameter with the query
|
347
359
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
348
360
|
number of the page to be returned. This requires that paging be turned on
|
349
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
361
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/division_team_standings","rel":"division_team_standings","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_team_standings?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_team_standings/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
350
362
|
number of items to return for each page. Sending this parameter with the query
|
351
363
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
352
364
|
number of the page to be returned. This requires that paging be turned on
|
353
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
365
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/divisions_preferences","rel":"divisions_preferences","prompt":"BETA:
|
354
366
|
(This endpoint subject to change) Returns a collection associated with a division''s
|
355
|
-
preferences","template":{"data":[{"name":"alternate_sport_name","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"can_have_subdivisions","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"has_tracked_items_for_non_players","value":null},{"name":"has_payments_for_non_players","value":null},{"name":"has_international_date","value":null},{"name":"has_international_time","value":null},{"name":"is_announcement_above_home_photo","value":null},{"name":"is_assignments_enabled","value":null},{"name":"is_availabilities_enabled","value":null},{"name":"is_coed","value":null},{"name":"is_event_reminders_enabled","value":null},{"name":"is_game_reminders_enabled","value":null},{"name":"is_header_hidden","value":null},{"name":"is_league_controlling_settings","value":null},{"name":"is_marketplace_enabled","value":null},{"name":"is_multi_sport","value":null},{"name":"is_payments_private","value":null},{"name":"is_registration_enabled","value":null},{"name":"is_roster_importable","value":null},{"name":"is_payments_enabled","value":null},{"name":"is_schedule_enabled","value":null},{"name":"is_sponsor_editable_for_non_commissioners","value":null},{"name":"is_standings_enabled","value":null},{"name":"is_statistics_enabled","value":null},{"name":"is_team_media_enabled","value":null},{"name":"is_tracked_items_enabled","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_tracking_points","value":null},{"name":"is_youth","value":null},{"name":"member_sort_order","value":null},{"name":"type","value":"
|
367
|
+
preferences","template":{"data":[{"name":"alternate_sport_name","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"can_have_subdivisions","value":null},{"name":"can_team_add_members","value":null},{"name":"can_team_delete_members","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"has_tracked_items_for_non_players","value":null},{"name":"has_payments_for_non_players","value":null},{"name":"has_international_date","value":null},{"name":"has_international_time","value":null},{"name":"is_announcement_above_home_photo","value":null},{"name":"is_assignments_enabled","value":null},{"name":"is_availabilities_enabled","value":null},{"name":"is_coed","value":null},{"name":"is_event_reminders_enabled","value":null},{"name":"is_game_reminders_enabled","value":null},{"name":"is_header_hidden","value":null},{"name":"is_league_controlling_settings","value":null},{"name":"is_marketplace_enabled","value":null},{"name":"is_multi_sport","value":null},{"name":"is_payments_private","value":null},{"name":"is_registration_enabled","value":null},{"name":"is_roster_importable","value":null},{"name":"is_payments_enabled","value":null},{"name":"is_schedule_enabled","value":null},{"name":"is_sponsor_editable_for_non_commissioners","value":null},{"name":"is_standings_enabled","value":null},{"name":"is_statistics_enabled","value":null},{"name":"is_team_media_enabled","value":null},{"name":"is_tracked_items_enabled","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_tracking_points","value":null},{"name":"is_youth","value":null},{"name":"member_sort_order","value":null},{"name":"type","value":"division_preferences"}]},"links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/divisions_preferences?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions_preferences/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
356
368
|
number of items to return for each page. Sending this parameter with the query
|
357
369
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
358
370
|
number of the page to be returned. This requires that paging be turned on
|
359
|
-
by also providing the page_size parameter."}]}]
|
371
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_division_logo","href":"http://localhost:3000/divisions_preferences/upload_division_logo","prompt":"Upload
|
372
|
+
a division logo. This must be a multi-part POST.","data":[{"name":"division_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_division_logo","href":"http://localhost:3000/divisions_preferences/remove_division_logo","prompt":"Remove
|
373
|
+
a division logo.","data":[{"name":"division_preferences_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/event_statistics","rel":"event_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/event_statistics?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/event_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"event_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/events","rel":"events","template":{"data":[{"name":"type","value":"event"},{"name":"additional_location_details","value":null},{"name":"browser_time_zone","value":null},{"name":"division_location_id","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"duration_in_minutes","value":null},{"name":"game_type_code","value":null},{"name":"icon_color","value":null},{"name":"is_canceled","value":null},{"name":"is_game","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"is_tbd","value":null},{"name":"label","value":null},{"name":"location_id","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"name","value":null},{"name":"notes","value":null},{"name":"notify_opponent","value":null},{"name":"notify_opponent_contacts_email","value":null},{"name":"notify_opponent_contacts_name","value":null},{"name":"notify_opponent_notes","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"opponent_id","value":null},{"name":"points_for_opponent","value":null},{"name":"points_for_team","value":null},{"name":"repeating_include","value":null,"prompt":"When
|
360
374
|
updating a repeating event, this is a required field. Values are: \"all\"
|
361
375
|
- updates all events in this series, \"future\" - updates this event and all
|
362
376
|
that occur after, \"none\" - only updates a single event."},{"name":"repeating_type_code","value":null,"prompt":"A
|
@@ -366,93 +380,136 @@ http_interactions:
|
|
366
380
|
date when the repeating event should end, this is inclusive so an event will
|
367
381
|
be created on this day if it falls before the next event specified by \"repeating_type_code\".
|
368
382
|
This attribute is required with \"repeating_type_code\" when creating a repeating
|
369
|
-
event."},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"start_date","value":null},{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","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":"event_statistics","href":"http://localhost:3000/event_statistics"},{"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","sort":["start_date"],"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},{"name":"page_size","value":null,"prompt":"The
|
383
|
+
event."},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"start_date","value":null},{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","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":"event_statistics","href":"http://localhost:3000/event_statistics"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","sort":["start_date"],"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":"repeating_uuid","value":null},{"name":"id","value":null},{"name":"is_game","value":null},{"name":"updated_since","value":null},{"name":"page_size","value":null,"prompt":"The
|
370
384
|
number of items to return for each page. Sending this parameter with the query
|
371
385
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
372
386
|
number of the page to be returned. This requires that paging be turned on
|
373
387
|
by also providing the page_size parameter."},{"name":"sort_start_date","value":null,"prompt":"Sort
|
374
388
|
the returned dataset based on the start_date field, valid values are ''asc''
|
375
|
-
or ''desc''."}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}
|
389
|
+
or ''desc''."}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
390
|
+
number of items to return for each page. Sending this parameter with the query
|
391
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
392
|
+
number of the page to be returned. This requires that paging be turned on
|
393
|
+
by also providing the page_size parameter."}]},{"rel":"overview","href":"http://localhost:3000/events/overview","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"send_availability_reminders","href":"http://localhost:3000/events/send_availability_reminders","prompt":"members_to_notify
|
376
394
|
= [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
|
377
395
|
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}]},{"rel":"bulk_create","href":"http://localhost:3000/events/bulk_create","prompt":"event_ids
|
378
|
-
= [event_id, event_id]","data":[{"name":"templates","value":null},{"name":"team_id","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_team","value":null}]}]}},{"collection":{"version":"3.
|
396
|
+
= [event_id, event_id]","data":[{"name":"templates","value":null},{"name":"team_id","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_team","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/experiments","rel":"experiments","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/experiments?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/experiments/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
397
|
+
number of items to return for each page. Sending this parameter with the query
|
398
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
399
|
+
number of the page to be returned. This requires that paging be turned on
|
400
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/facebook_pages","rel":"facebook_pages","links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/facebook_pages?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/facebook_pages/search","data":[{"name":"page_size","value":null,"prompt":"The
|
401
|
+
number of items to return for each page. Sending this parameter with the query
|
402
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
403
|
+
number of the page to be returned. This requires that paging be turned on
|
404
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/forecasts","rel":"forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forecasts?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
405
|
+
number of items to return for each page. Sending this parameter with the query
|
406
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
407
|
+
number of the page to be returned. This requires that paging be turned on
|
408
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/forum_posts","rel":"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},{"name":"type","value":"forum_post"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
409
|
+
number of items to return for each page. Sending this parameter with the query
|
410
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
411
|
+
number of the page to be returned. This requires that paging be turned on
|
412
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/forum_subscriptions","rel":"forum_subscriptions","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"forum_subscription"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
379
413
|
number of items to return for each page. Sending this parameter with the query
|
380
414
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
381
415
|
number of the page to be returned. This requires that paging be turned on
|
382
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
416
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/forum_topics","rel":"forum_topics","template":{"data":[{"name":"title","value":null},{"name":"is_announcement","value":null},{"name":"team_id","value":null},{"name":"type","value":"forum_topic"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_topics/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
383
417
|
number of items to return for each page. Sending this parameter with the query
|
384
418
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
385
419
|
number of the page to be returned. This requires that paging be turned on
|
386
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
420
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/geocoded_locations","rel":"geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/geocoded_locations?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"page_size","value":null,"prompt":"The
|
387
421
|
number of items to return for each page. Sending this parameter with the query
|
388
422
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
389
423
|
number of the page to be returned. This requires that paging be turned on
|
390
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
424
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/gcm_devices","rel":"gcm_devices","template":{"data":[{"name":"registration_id","value":null},{"name":"app_version","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/gcm_devices?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/gcm_devices/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
391
425
|
number of items to return for each page. Sending this parameter with the query
|
392
426
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
393
427
|
number of the page to be returned. This requires that paging be turned on
|
394
|
-
by also providing the page_size parameter."}]}]
|
428
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"send_push","href":"http://localhost:3000/gcm_devices/send_push","data":[{"name":"registration_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/invitations","rel":"invitations","template":{"data":[{"name":"code","value":null},{"name":"is_invited","value":null},{"name":"is_complete","value":null}]},"links":[{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/invitations/search","data":[{"name":"code","value":null},{"name":"page_size","value":null,"prompt":"The
|
395
429
|
number of items to return for each page. Sending this parameter with the query
|
396
430
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
397
431
|
number of the page to be returned. This requires that paging be turned on
|
398
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
432
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/invoices","rel":"invoices","prompt":"Beta:
|
433
|
+
(This endpoint is subject to change) Returns invoices","template":{"data":[{"name":"batch_invoice_id","value":null},{"name":"member_id","value":null},{"name":"invoice_status_id","value":null},{"name":"sent_at","value":null},{"name":"due_at","value":null},{"name":"type","value":"invoice"}]},"links":[{"rel":"batch_invoice","href":"http://localhost:3000/batch_invoices"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/invoices?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/invoices/search","data":[{"name":"id","value":null},{"name":"batch_invoice_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
399
434
|
number of items to return for each page. Sending this parameter with the query
|
400
435
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
401
436
|
number of the page to be returned. This requires that paging be turned on
|
402
|
-
by also providing the page_size parameter."}]}]
|
437
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"create_for_batch_invoice","href":"http://localhost:3000/invoices/create_for_batch_invoice","prompt":"member_ids
|
438
|
+
= [member_id, member_id]","data":[{"name":"batch_invoice_id","value":null},{"name":"member_ids","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/invoice_line_items","rel":"invoice_line_items","prompt":"Beta:
|
439
|
+
(This endpoint is subject to change) Returns invoice_line_items","template":{"data":[{"name":"invoice_id","value":null},{"name":"invoice_category_id","value":null},{"name":"description","value":null},{"name":"quantity","value":null},{"name":"amount","value":null},{"name":"type","value":null}]},"links":[{"rel":"invoice","href":"http://localhost:3000/invoices"},{"rel":"batch_invoice","href":"http://localhost:3000/batch_invoices"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/invoice_line_items?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/invoice_line_items/search","data":[{"name":"id","value":null},{"name":"invoice_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
403
440
|
number of items to return for each page. Sending this parameter with the query
|
404
441
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
405
442
|
number of the page to be returned. This requires that paging be turned on
|
406
|
-
by also providing the page_size parameter."}]}]
|
443
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/invoice_recipients","rel":"invoice_recipients","prompt":"Beta:
|
444
|
+
(This endpoint is subject to change) Returns invoice_recipients","template":{"data":[{"name":"invoice_id","value":null},{"name":"invoiceable_id","value":null},{"name":"invoiceable_type","value":null},{"name":"invoice_to","value":null},{"name":"type","value":"invoice_recipient"}]},"links":[{"rel":"invoice","href":"http://localhost:3000/invoices"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/invoice_recipients?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/invoice_recipients/search","data":[{"name":"id","value":null},{"name":"invoice_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
407
445
|
number of items to return for each page. Sending this parameter with the query
|
408
446
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
409
447
|
number of the page to be returned. This requires that paging be turned on
|
410
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
448
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/invoice_transactions","rel":"invoice_transactions","prompt":"Beta:
|
449
|
+
(This endpoint is subject to change) Returns invoice_transactions","template":{"data":[{"name":"invoice_id","value":null},{"name":"amount","value":null},{"name":"entry_type","value":null},{"name":"reference_id","value":null},{"name":"reference_type","value":null},{"name":"transferred_to","value":null},{"name":"transferred_from","value":null},{"name":"last_transacted_at","value":null}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/invoice_transactions?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/invoice_transactions/search","data":[{"name":"id","value":null},{"name":"invoice_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
450
|
+
number of items to return for each page. Sending this parameter with the query
|
451
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
452
|
+
number of the page to be returned. This requires that paging be turned on
|
453
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/league_registrant_documents","rel":"league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members","prompt":"member
|
454
|
+
is deprecated and will be removed in a future version, use members instead."},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams","prompt":"team
|
455
|
+
is deprecated and will be removed in a future version, use teams instead."},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_registrant_documents?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
456
|
+
number of items to return for each page. Sending this parameter with the query
|
457
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
458
|
+
number of the page to be returned. This requires that paging be turned on
|
459
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/locations","rel":"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},{"name":"type","value":"location"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
411
460
|
number of items to return for each page. Sending this parameter with the query
|
412
461
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
413
462
|
number of the page to be returned. This requires that paging be turned on
|
414
463
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"import_from_team","href":"http://localhost:3000/locations/import_from_team","prompt":"Copy
|
415
|
-
the specified ''source_location_ids'' to the specified ''destination_team_id''.","data":[{"name":"destination_team_id","value":null},{"name":"source_location_ids","value":null}]}]}},{"collection":{"version":"3.
|
464
|
+
the specified ''source_location_ids'' to the specified ''destination_team_id''.","data":[{"name":"destination_team_id","value":null},{"name":"source_location_ids","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_assignments","rel":"member_assignments","template":{"data":[{"name":"assignment_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"member_assignment"}]},"links":[{"rel":"assignment","href":"http://localhost:3000/assignments"},{"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/member_assignments?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_assignments/search","data":[{"name":"assignment_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
416
465
|
number of items to return for each page. Sending this parameter with the query
|
417
466
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
418
467
|
number of the page to be returned. This requires that paging be turned on
|
419
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
468
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_email_addresses","rel":"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},{"name":"type","value":"member_email_address"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"email","value":null},{"name":"page_size","value":null,"prompt":"The
|
420
469
|
number of items to return for each page. Sending this parameter with the query
|
421
470
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
422
471
|
number of the page to be returned. This requires that paging be turned on
|
423
472
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/member_email_addresses/invite","prompt":"BETA:
|
424
|
-
Invite member email addresses to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"member_email_address_ids","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]}]}},{"collection":{"version":"3.
|
473
|
+
Invite member email addresses to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"member_email_address_ids","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_balances","rel":"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_balances/search","data":[{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
425
474
|
number of items to return for each page. Sending this parameter with the query
|
426
475
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
427
476
|
number of the page to be returned. This requires that paging be turned on
|
428
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
477
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_files","rel":"member_files","template":{"data":[{"name":"member_id","value":null},{"name":"is_private","value":null},{"name":"description","value":null},{"name":"type","value":"member_file"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
429
478
|
number of items to return for each page. Sending this parameter with the query
|
430
479
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
431
480
|
number of the page to be returned. This requires that paging be turned on
|
432
481
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
|
433
|
-
a member file. This must be a multi-part POST.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.
|
482
|
+
a member file. This must be a multi-part POST.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_links","rel":"member_links","template":{"data":[{"name":"member_id","value":null},{"name":"url","value":null},{"name":"is_private","value":null},{"name":"description","value":null},{"name":"type","value":"member_link"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
434
483
|
number of items to return for each page. Sending this parameter with the query
|
435
484
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
436
485
|
number of the page to be returned. This requires that paging be turned on
|
437
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
486
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_payments","rel":"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},{"name":"type","value":"member_payment"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
438
487
|
number of items to return for each page. Sending this parameter with the query
|
439
488
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
440
489
|
number of the page to be returned. This requires that paging be turned on
|
441
490
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"transaction","href":"http://localhost:3000/member_payments/transaction","prompt":"Add
|
442
|
-
or subtract money from the amount paid on a Member Payment.","data":[{"name":"member_payment_id","value":null},{"name":"amount","value":null},{"name":"note","value":null}]}]}},{"collection":{"version":"3.
|
443
|
-
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"member_phone_number"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
491
|
+
or subtract money from the amount paid on a Member Payment.","data":[{"name":"member_payment_id","value":null},{"name":"amount","value":null},{"name":"note","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_phone_numbers","rel":"member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
|
492
|
+
is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"member_phone_number"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
493
|
+
number of items to return for each page. Sending this parameter with the query
|
494
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
495
|
+
number of the page to be returned. This requires that paging be turned on
|
496
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_photos","rel":"member_photos","prompt":"BETA:
|
497
|
+
(This endpoint is subject to change) Returns a collection of member photos.","links":[{"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/member_photos?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_photos/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"height","value":null},{"name":"width","value":null},{"name":"crop","value":null},{"name":"page_size","value":null,"prompt":"The
|
444
498
|
number of items to return for each page. Sending this parameter with the query
|
445
499
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
446
500
|
number of the page to be returned. This requires that paging be turned on
|
447
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
448
|
-
(This endpoint
|
501
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","prompt":"BETA:
|
502
|
+
(This endpoint subject to change) Returns a collection of a division''s registration
|
503
|
+
signups.","href":"http://localhost:3000/member_registration_signups","rel":"member_registration_signups","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_registration_signups?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_registration_signups/search","data":[{"name":"member_id","value":null},{"name":"division_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
449
504
|
number of items to return for each page. Sending this parameter with the query
|
450
505
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
451
506
|
number of the page to be returned. This requires that paging be turned on
|
452
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
507
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/member_statistics","rel":"member_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_statistics?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"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.520.0","href":"http://localhost:3000/members","rel":"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,"deprecated":true,"prompt":"hide_age
|
453
508
|
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
|
454
509
|
is deprecated and will be removed in a future version, use is_address_hidden
|
455
|
-
instead."},{"name":"is_address_hidden","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},{"name":"is_ownership_pending","value":null},{"name":"type","value":"member"}]},"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_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"
|
510
|
+
instead."},{"name":"is_address_hidden","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},{"name":"is_ownership_pending","value":null},{"name":"type","value":"member"}]},"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_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division","href":"http://localhost:3000/divisions"},{"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_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"%{old}
|
511
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"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","prompt":"%{old}
|
512
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"can_receive_push_notifications","value":null},{"name":"page_size","value":null,"prompt":"The
|
456
513
|
number of items to return for each page. Sending this parameter with the query
|
457
514
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
458
515
|
number of the page to be returned. This requires that paging be turned on
|
@@ -464,268 +521,163 @@ http_interactions:
|
|
464
521
|
that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
|
465
522
|
a user ID, returns all members associated with user''s active season teams. If
|
466
523
|
include_archived_teams (boolean) parameter is supplied, members associated
|
467
|
-
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}
|
468
|
-
source_member_ids (array) and a destination_team_id, source members and related
|
469
|
-
member data will be imported to the destination team. Newly created members
|
470
|
-
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null},{"name":"send_invites","value":null,"prompt":"Whether
|
471
|
-
or not to create and send invitations for each imported member. Valid values
|
472
|
-
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"BETA:
|
524
|
+
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"BETA:
|
473
525
|
(This endpoint subject to change) Searches the division and subdivision for
|
474
526
|
the members meeting the search criteria.","data":[{"name":"division_id","value":null,"prompt":"Id
|
475
527
|
of the division and descendants to search"},{"name":"is_unassigned","value":null,"prompt":"true/false
|
476
528
|
- For all members in a division that aren''t assigned to a team. Not used
|
477
529
|
if blank."},{"name":"is_activated","value":null,"prompt":"true/false - For
|
478
|
-
all members in a division that have a user. Not used if blank."}
|
530
|
+
all members in a division that have a user. Not used if blank."},{"name":"is_commissioner","value":null,"prompt":"true/false
|
531
|
+
- For all members in a division that are or are not a commissioner. Not used
|
532
|
+
if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
533
|
+
- Find all members in a division that are or are not pending ownership. Not
|
534
|
+
used if blank."},{"name":"page_size","value":null,"prompt":"The number of
|
535
|
+
items to return for each page. Sending this parameter with the query will
|
536
|
+
enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
537
|
+
number of the page to be returned. This requires that paging be turned on
|
538
|
+
by also providing the page_size parameter."}]},{"rel":"advanced_division_search","href":"http://localhost:3000/members/advanced_division_search","prompt":"BETA:
|
539
|
+
(This endpoint subject to change) Searches the division and subdivision for
|
540
|
+
the members meeting the search criteria. Searches using this endpoint accept
|
541
|
+
additional parameters. You can search for equality by formatting the string
|
542
|
+
as ''operator:equals,value:<SEARCH STRING>''. You can also search inquality
|
543
|
+
by using not_equals as ''operator:not_equals,value:<SEARCH STRING>''. You
|
544
|
+
may search for additional parameters by sending them as an array, for instance:
|
545
|
+
?birthday[]=operator:less_than,value:2016-02-02&birthday[]=operator:greater_than,value:2010-02-02.
|
546
|
+
Other operatores are less_than_or_equal and greater_than_or_equal","data":[{"name":"division_id","value":null,"prompt":"Id
|
547
|
+
of the division and descendants to search"},{"name":"id","value":null,"prompt":"Id
|
548
|
+
of the member to search"},{"name":"user_id","value":null,"prompt":"Id of the
|
549
|
+
user to search"},{"name":"is_commissioner","value":null,"prompt":"true/false
|
550
|
+
- For all members in a division that are or are not a commissioner. Not used
|
551
|
+
if blank."},{"name":"birthday","value":null,"prompt":"date - Accepts advanced
|
552
|
+
search operators ''less_than'' and ''greater_than''."},{"name":"team_id","value":null,"prompt":"integer
|
553
|
+
- Find all members in a division with the specified team_id(s)."},{"name":"is_manager","value":null,"prompt":"true/false
|
554
|
+
- Find all members in a division that are or are not a team manager. Not used
|
555
|
+
if blank."},{"name":"is_owner","value":null,"prompt":"true/false - Find all
|
556
|
+
members in a division that are or are not owners. Not used if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
557
|
+
- Find all members in a division that are or are not pending ownership. Not
|
558
|
+
used if blank."},{"name":"gender","value":null,"prompt":"Male/Female - Find
|
559
|
+
all members in a division with the specified gender."},{"name":"first_name","value":null,"prompt":"string
|
560
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"last_name","value":null,"prompt":"string
|
561
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"email","value":null,"prompt":"string
|
562
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"custom_field","value":null,"prompt":"string
|
563
|
+
- Required advanced search parameter of ''id'' that should be the id of the
|
564
|
+
custom field to be searched on. Accepts advanced search operators ''equals'',
|
565
|
+
''contains'' and ''starts_with''."},{"name":"registration_form_id","value":null,"prompt":"string
|
566
|
+
- Find all members in a division with the specified registration_form_id."},{"name":"is_assigned","value":null,"prompt":"true/false
|
567
|
+
- For all members in a division that are assigned to a team. Not used if blank."},{"name":"is_activated","value":null,"prompt":"true/false
|
568
|
+
- For all members in a division that have a user. Not used if blank."},{"name":"checkout_type","value":null,"prompt":"string
|
569
|
+
- Search for a registration checkout type. Valid values are: \"1\" - In Progress,
|
570
|
+
\"2\" - Pay Now, \"3\" - Installment Plan, \"4\" - Pay Offline, \"5\" - No
|
571
|
+
Fees"},{"name":"signup_status","value":null,"prompt":"string - Search for
|
572
|
+
a registration based on it''s signup status. Value values are: \"authorized\"
|
573
|
+
- Authorized, \"refunded\" - Refunded, \"failed\" - Failed, \"active\" - Active,
|
574
|
+
\"canceled\" - Canceled, \"charged_back\" - Charged Back, \"on_checkout\"
|
575
|
+
- On Checkout, \"paid\" - Paid"},{"name":"search_subdivisions","value":null,"prompt":"true/false
|
576
|
+
- Search all the subdivisions of the division provided. True by default."},{"name":"page_size","value":null,"prompt":"The
|
577
|
+
number of items to return for each page. Sending this parameter with the query
|
578
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
579
|
+
number of the page to be returned. This requires that paging be turned on
|
580
|
+
by also providing the page_size parameter."}]}],"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":"set_commissioner_access","href":"http://localhost:3000/members/set_commissioner_access","data":[{"name":"member_id","value":null},{"name":"division_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}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
|
581
|
+
source_member_ids (array) and a destination_team_id, source members and related
|
582
|
+
member data will be imported to the destination team. Newly created members
|
583
|
+
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null},{"name":"send_invites","value":null,"prompt":"Whether
|
584
|
+
or not to create and send invitations for each imported member. Valid values
|
585
|
+
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"bulk_delete","href":"http://localhost:3000/members/bulk_delete","prompt":"Delete
|
586
|
+
one or many members.","data":[{"name":"member_id","value":null,"prompt":"The
|
587
|
+
id of the member to be deleted, this can either be passed as a comma-delimited
|
588
|
+
list of integers or as an array if the post data is JSON."}]},{"rel":"move_member","href":"http://localhost:3000/members/move_member","prompt":"Move
|
589
|
+
one or many members to a new division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
590
|
+
id of the member or members to be moved, this can either be passed as a comma-delimited
|
591
|
+
list of integers or as an array if the post data is JSON."},{"name":"division_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/members_preferences","rel":"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_event","value":null,"deprecated":true,"prompt":"reminders_send_event
|
479
592
|
is deprecated and will be removed in a future version, use event_reminder_preference
|
480
593
|
instead."},{"name":"reminders_send_game","value":null,"deprecated":true,"prompt":"reminders_send_game
|
481
594
|
is deprecated and will be removed in a future version, use game_reminder_preference
|
482
|
-
instead."},{"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
|
595
|
+
instead."},{"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,"deprecated":true,"prompt":"facebook_post_scores
|
596
|
+
is deprecated and has been removed. Continued use of facebook_post_scores
|
597
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_page_id","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_page_id
|
598
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_page_id
|
599
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_page_name","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_page_name
|
600
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_page_name
|
601
|
+
is not recommended it will no longer be stored."},{"name":"facebook_post_scores_to_wall","value":null,"deprecated":true,"prompt":"facebook_post_scores_to_wall
|
602
|
+
is deprecated and has been removed. Continued use of facebook_post_scores_to_wall
|
603
|
+
is not recommended it will no longer be stored."},{"name":"facebook_only_post_wins","value":null,"deprecated":true,"prompt":"facebook_only_post_wins
|
604
|
+
is deprecated and has been removed. Continued use of facebook_only_post_wins
|
605
|
+
is not recommended it will no longer be stored."},{"name":"facebook_polite_scores","value":null,"deprecated":true,"prompt":"facebook_polite_scores
|
606
|
+
is deprecated and has been removed. Continued use of facebook_polite_scores
|
607
|
+
is not recommended it will no longer be stored."},{"name":"facebook_page_access_token","value":null,"deprecated":true,"prompt":"facebook_page_access_token
|
608
|
+
is deprecated and has been removed. Continued use of facebook_page_access_token
|
609
|
+
is not recommended it will no longer be stored."},{"name":"game_reminder_preference","value":null,"prompt":"Valid
|
483
610
|
values are ''team'', ''member'' and ''none''."},{"name":"event_reminder_preference","value":null,"prompt":"Valid
|
484
|
-
values are ''team'', ''member'' and ''none''."},{"name":"type","value":"member_preferences"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
611
|
+
values are ''team'', ''member'' and ''none''."},{"name":"type","value":"member_preferences"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
485
612
|
number of items to return for each page. Sending this parameter with the query
|
486
613
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
487
614
|
number of the page to be returned. This requires that paging be turned on
|
488
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
615
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/message_data","rel":"message_data","prompt":"BETA:
|
489
616
|
(This endpoint is subject to change) Returns a collection of summarized data
|
490
|
-
about messages.","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/message_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/message_data/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"member_id","value":null},{"name":"contact_id","value":null},{"name":"
|
491
|
-
|
492
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
493
|
-
number of the page to be returned. This requires that paging be turned on
|
494
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/messages","rel":"messages","prompt":"BETA:
|
495
|
-
(This endpoint is subject to change) Returns a collection of messages.","links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"sender","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/messages"}],"queries":[{"rel":"search","href":"http://localhost:3000/messages/search","data":[{"name":"team_id","value":null},{"name":"division_id","value":null},{"name":"member_id","value":null},{"name":"division_member_id","value":null},{"name":"message_id","value":null,"prompt":"message_id
|
617
|
+
about messages.","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/message_data?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/message_data/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"member_id","value":null},{"name":"contact_id","value":null},{"name":"message_type","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/messages","rel":"messages","prompt":"BETA:
|
618
|
+
(This endpoint is subject to change) Returns a collection of messages.","links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"sender","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/messages?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/messages/search","data":[{"name":"team_id","value":null},{"name":"division_id","value":null},{"name":"member_id","value":null},{"name":"division_member_id","value":null},{"name":"message_id","value":null,"prompt":"message_id
|
496
619
|
is deprecated and will be removed in a future version, use message_source_id
|
497
620
|
instead."},{"name":"message_source_id","value":null},{"name":"message_type","value":null},{"name":"contact_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
498
621
|
number of items to return for each page. Sending this parameter with the query
|
499
622
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
500
623
|
number of the page to be returned. This requires that paging be turned on
|
501
624
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"mark_message_as_read","href":"http://localhost:3000/messages/mark_as_read","prompt":"Mark
|
502
|
-
a message as read.","data":[{"name":"id","value":null}]}
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
is deprecated and will be removed in a future version, use has_team_media
|
553
|
-
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
|
554
|
-
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000},{"name":"created_at","value":null,"type":"DateTime"},{"name":"updated_at","value":null,"type":"DateTime"}],"rel":"plan-37"},{"href":"http://localhost:3000/plans/41","data":[{"name":"id","value":41},{"name":"type","value":"plan"},{"name":"annual_price","value":69.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
|
555
|
-
is deprecated and will be removed in a future version, use has_team_media
|
556
|
-
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":9.99},{"name":"monthly_price_description","value":"$9.99/month"},{"name":"name","value":"Basic
|
557
|
-
Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":500},{"name":"created_at","value":null,"type":"DateTime"},{"name":"updated_at","value":null,"type":"DateTime"}],"rel":"plan-41"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/public_features","rel":"public_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/public_features"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/sms_gateways","rel":"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},{"name":"page_size","value":null,"prompt":"The
|
558
|
-
number of items to return for each page. Sending this parameter with the query
|
559
|
-
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
560
|
-
number of the page to be returned. This requires that paging be turned on
|
561
|
-
by also providing the page_size parameter."}]}],"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
|
562
|
-
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
|
563
|
-
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
|
564
|
-
Wireless"}],"rel":"SmsGateway-appalachian-wireless"},{"href":"http://localhost:3000/sms_gateways/assurance-wireless","data":[{"name":"id","value":"assurance-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobl.com"},{"name":"name","value":"Assurance
|
565
|
-
Wireless"}],"rel":"SmsGateway-assurance-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
|
566
|
-
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
|
567
|
-
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
|
568
|
-
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
|
569
|
-
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
|
570
|
-
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
|
571
|
-
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
|
572
|
-
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
|
573
|
-
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
|
574
|
-
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
|
575
|
-
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
|
576
|
-
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
|
577
|
-
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
|
578
|
-
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
|
579
|
-
Mobile"}],"rel":"SmsGateway-credo"},{"href":"http://localhost:3000/sms_gateways/cricket-wireless","data":[{"name":"id","value":"cricket-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mycricket.com"},{"name":"name","value":"Cricket
|
580
|
-
Wireless"}],"rel":"SmsGateway-cricket-wireless"},{"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
|
581
|
-
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
|
582
|
-
(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
|
583
|
-
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
|
584
|
-
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
|
585
|
-
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
|
586
|
-
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
|
587
|
-
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
|
588
|
-
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/other-na","data":[{"name":"id","value":"other-na"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@example.com"},{"name":"name","value":"Other
|
589
|
-
US/CA Carrier"}],"rel":"SmsGateway-other-na"},{"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
|
590
|
-
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
|
591
|
-
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/presidents-choice","data":[{"name":"id","value":"presidents-choice"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobiletxt.ca"},{"name":"name","value":"President''s
|
592
|
-
Choice"}],"rel":"SmsGateway-presidents-choice"},{"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
|
593
|
-
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
|
594
|
-
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
|
595
|
-
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
|
596
|
-
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
|
597
|
-
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
|
598
|
-
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
|
599
|
-
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
|
600
|
-
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
|
601
|
-
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
|
602
|
-
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
|
603
|
-
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
|
604
|
-
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/ultra-mobile","data":[{"name":"id","value":"ultra-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mailmymobile.net"},{"name":"name","value":"Ultra
|
605
|
-
Mobile"}],"rel":"SmsGateway-ultra-mobile"},{"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
|
606
|
-
Wireless"}],"rel":"SmsGateway-union-wireless"},{"href":"http://localhost:3000/sms_gateways/united-wireless","data":[{"name":"id","value":"united-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.unitedwireless.com"},{"name":"name","value":"United
|
607
|
-
Wireless"}],"rel":"SmsGateway-united-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
|
608
|
-
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
|
609
|
-
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
|
610
|
-
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
|
611
|
-
- 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
|
612
|
-
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
|
613
|
-
(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
|
614
|
-
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
|
615
|
-
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
|
616
|
-
(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
|
617
|
-
(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
|
618
|
-
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
|
619
|
-
(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
|
620
|
-
(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
|
621
|
-
(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
|
622
|
-
(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
|
623
|
-
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
|
624
|
-
(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
|
625
|
-
(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
|
626
|
-
(Spain)"}],"rel":"SmsGateway-movistar-spain"},{"href":"http://localhost:3000/sms_gateways/mtel-bulgaria","data":[{"name":"id","value":"mtel-bulgaria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mtel.net"},{"name":"name","value":"Mtel
|
627
|
-
(Bulgaria)"}],"rel":"SmsGateway-mtel-bulgaria"},{"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
|
628
|
-
(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
|
629
|
-
(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
|
630
|
-
(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
|
631
|
-
(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
|
632
|
-
(UK)"}],"rel":"SmsGateway-o2-uk"},{"href":"http://localhost:3000/sms_gateways/optus","data":[{"name":"id","value":"optus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@redcoal.net"},{"name":"name","value":"Optus
|
633
|
-
(Australia)"}],"rel":"SmsGateway-optus"},{"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
|
634
|
-
(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
|
635
|
-
(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
|
636
|
-
(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
|
637
|
-
(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
|
638
|
-
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
|
639
|
-
(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
|
640
|
-
(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
|
641
|
-
(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
|
642
|
-
(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
|
643
|
-
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
|
644
|
-
Mobile"}],"rel":"SmsGateway-telecom-mobile"},{"href":"http://localhost:3000/sms_gateways/telenor-bulgaria","data":[{"name":"id","value":"telenor-bulgaria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.telenor.bg"},{"name":"name","value":"Telenor
|
645
|
-
(Bulgaria)"}],"rel":"SmsGateway-telenor-bulgaria"},{"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
|
646
|
-
(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
|
647
|
-
(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
|
648
|
-
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
|
649
|
-
(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
|
650
|
-
(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
|
651
|
-
(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
|
652
|
-
(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
|
653
|
-
(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
|
654
|
-
(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
|
655
|
-
(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
|
656
|
-
(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
|
657
|
-
(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
|
658
|
-
Italia"}],"rel":"SmsGateway-three-italia"},{"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
|
659
|
-
(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
|
660
|
-
(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
|
661
|
-
(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
|
662
|
-
(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
|
663
|
-
(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
|
664
|
-
(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
|
665
|
-
(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
|
666
|
-
(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
|
667
|
-
(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
|
668
|
-
(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
|
669
|
-
(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
|
670
|
-
(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
|
671
|
-
(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
|
672
|
-
(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
|
673
|
-
(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
|
674
|
-
(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
|
675
|
-
(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
|
676
|
-
(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
|
677
|
-
(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
|
678
|
-
(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
|
679
|
-
(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
|
680
|
-
Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/sponsors","rel":"sponsers","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null},{"name":"type","value":"sponsor"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
625
|
+
a message as read.","data":[{"name":"id","value":null}]},{"rel":"bulk_delete","href":"http://localhost:3000/messages/bulk_delete","prompt":"Delete
|
626
|
+
several messages with a single command.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/opponents","rel":"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},{"name":"type","value":"opponent"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"league_team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
627
|
+
number of items to return for each page. Sending this parameter with the query
|
628
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
629
|
+
number of the page to be returned. This requires that paging be turned on
|
630
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/opponents_results","rel":"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
631
|
+
number of items to return for each page. Sending this parameter with the query
|
632
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
633
|
+
number of the page to be returned. This requires that paging be turned on
|
634
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/payment_method_wepay_credit_cards","rel":"payment_method_wepay_credit_cards","prompt":"BETA:
|
635
|
+
(This endpoint subject to change) Returns a collection of WePay credit card
|
636
|
+
payment methods.","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/payment_method_wepay_credit_cards?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_method_wepay_credit_cards/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
637
|
+
number of items to return for each page. Sending this parameter with the query
|
638
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
639
|
+
number of the page to be returned. This requires that paging be turned on
|
640
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/payment_notes","rel":"payment_notes","template":{"data":[{"name":"member_payment_id","value":null},{"name":"note","value":null},{"name":"type","value":"payment_note"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
641
|
+
number of items to return for each page. Sending this parameter with the query
|
642
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
643
|
+
number of the page to be returned. This requires that paging be turned on
|
644
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/payment_providers","rel":"payment_providers","prompt":"Beta:
|
645
|
+
(This endpoint is subject to change) Returns payment providers","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/payment_providers?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_providers/search","data":[{"name":"id","value":null},{"name":"name","value":null},{"name":"page_size","value":null,"prompt":"The
|
646
|
+
number of items to return for each page. Sending this parameter with the query
|
647
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
648
|
+
number of the page to be returned. This requires that paging be turned on
|
649
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/paypal_currencies","rel":"paypal_currencies","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/paypal_currencies?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/paypal_currencies/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.520.0","rel":"plans","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/plans?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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
|
650
|
+
all active and inactive plans"}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/public_features","rel":"public_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/public_features?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}]}},{"collection":{"prompt":"BETA:
|
651
|
+
(This endpoint subject to change) Returns a list of registration signup statuses
|
652
|
+
available.","version":"3.520.0","href":"http://localhost:3000/registration_signup_statuses","rel":"registration_signup_statuses","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/registration_signup_statuses?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/registration_signup_statuses/search","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.520.0","prompt":"BETA:
|
653
|
+
(This endpoint subject to change) Returns a collection of a division''s registration
|
654
|
+
forms.","href":"http://localhost:3000/registration_forms","rel":"registration_forms","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/registration_forms?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/registration_forms/search","data":[{"name":"division_id","value":null},{"name":"id","value":null},{"name":"is_retired","value":null},{"name":"page_size","value":null,"prompt":"The
|
655
|
+
number of items to return for each page. Sending this parameter with the query
|
656
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
657
|
+
number of the page to be returned. This requires that paging be turned on
|
658
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","prompt":"BETA:
|
659
|
+
(This endpoint subject to change) Returns a collection of a registration form''s
|
660
|
+
line items.","href":"http://localhost:3000/registration_form_line_items","rel":"registration_form_line_items","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/registration_form_line_items?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/registration_form_line_items/search","data":[{"name":"registration_form_id","value":null},{"name":"id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
661
|
+
number of items to return for each page. Sending this parameter with the query
|
662
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
663
|
+
number of the page to be returned. This requires that paging be turned on
|
664
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","prompt":"BETA:
|
665
|
+
(This endpoint subject to change) Returns a collection of a registration form
|
666
|
+
line item''s registration form line item options.","href":"http://localhost:3000/registration_form_line_item_options","rel":"registration_form_line_item_options","links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms"},{"rel":"registration_form_line_item","href":"http://localhost:3000/registration_form_line_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/registration_form_line_item_options?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/registration_form_line_item_options/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"registration_form_id","value":null},{"name":"registration_form_line_item_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
667
|
+
number of items to return for each page. Sending this parameter with the query
|
668
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
669
|
+
number of the page to be returned. This requires that paging be turned on
|
670
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/sms_gateways","rel":"sms_gateways","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sms_gateways?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/sms_gateways/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
671
|
+
number of items to return for each page. Sending this parameter with the query
|
672
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
673
|
+
number of the page to be returned. This requires that paging be turned on
|
674
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/sponsors","rel":"sponsers","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null},{"name":"type","value":"sponsor"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sponsors?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/sponsors/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
681
675
|
number of items to return for each page. Sending this parameter with the query
|
682
676
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
683
677
|
number of the page to be returned. This requires that paging be turned on
|
684
678
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
|
685
679
|
a sponsor logo. This must be a multi-part POST.","data":[{"name":"sponsor_id","value":null},{"name":"file","value":null}]},{"rel":"remove_sponsor_logo","href":"http://localhost:3000/sponsors/remove_sponsor_logo","prompt":"Removes
|
686
|
-
a sponser''s logo.","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.
|
687
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-adaptive_sports.png"}],"rel":"sport-69"},{"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
|
688
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-alpine_skiing.png"}],"rel":"sport-72"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-archery.png"}],"rel":"sport-59"},{"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
|
689
|
-
Football"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
690
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-australian_football.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-badminton.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bandy.png"}],"rel":"sport-28"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-baseball.png"}],"rel":"sport-5"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-basketball.png"}],"rel":"sport-1"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bocce.png"}],"rel":"sport-29"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bowling.png"}],"rel":"sport-13"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-broomball.png"}],"rel":"sport-30"},{"href":"http://localhost:3000/sports/86","data":[{"name":"id","value":86},{"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":"Camogie"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
691
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-camogie.png"}],"rel":"sport-86"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cheerleading.png"}],"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":false},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-chess.png"}],"rel":"sport-32"},{"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
|
692
|
-
Tipping"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
693
|
-
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":false},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cow_tipping.png"}],"rel":"sport-54"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cricket.png"}],"rel":"sport-8"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-croquet.png"}],"rel":"sport-33"},{"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
|
694
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cross_country.png"}],"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
|
695
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cross_country_skiing.png"}],"rel":"sport-71"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-curling.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cycling.png"}],"rel":"sport-35"},{"href":"http://localhost:3000/sports/80","data":[{"name":"id","value":80},{"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":"Dance"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dance.png"}],"rel":"sport-80"},{"href":"http://localhost:3000/sports/83","data":[{"name":"id","value":83},{"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":"Darts"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-darts.png"}],"rel":"sport-83"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-diving.png"}],"rel":"sport-77"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dodgeball.png"}],"rel":"sport-14"},{"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
|
696
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dragon_boat.png"}],"rel":"sport-25"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-fencing.png"}],"rel":"sport-36"},{"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
|
697
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-field_hockey.png"}],"rel":"sport-15"},{"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
|
698
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-floor_hockey.png"}],"rel":"sport-60"},{"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
|
699
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-floorball.png"}],"rel":"sport-44"},{"href":"http://localhost:3000/sports/82","data":[{"name":"id","value":82},{"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":"Flying"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-flying.png"}],"rel":"sport-82"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-foosball.png"}],"rel":"sport-37"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-football.png"}],"rel":"sport-7"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-golf.png"}],"rel":"sport-46"},{"href":"http://localhost:3000/sports/81","data":[{"name":"id","value":81},{"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-Coed"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-coed.png"}],"rel":"sport-81"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-men.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-women.png"}],"rel":"sport-57"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-handcycling.png"}],"rel":"sport-68"},{"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
|
700
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-horseback_riding.png"}],"rel":"sport-76"},{"href":"http://localhost:3000/sports/87","data":[{"name":"id","value":87},{"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":"Horseshoes"},{"name":"overtime_abbrev","value":"AI"},{"name":"overtime_label","value":"Additional
|
701
|
-
Innings"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-horseshoes.png"}],"rel":"sport-87"},{"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
|
702
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-hurling.png"}],"rel":"sport-38"},{"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
|
703
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ice_hockey.png"}],"rel":"sport-16"},{"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
|
704
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-indoor_soccer.png"}],"rel":"sport-39"},{"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
|
705
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-inline_hockey.png"}],"rel":"sport-17"},{"href":"http://localhost:3000/sports/85","data":[{"name":"id","value":85},{"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":"Jump
|
706
|
-
Rope"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-jump_rope.png"}],"rel":"sport-85"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ki-o-rahi.png"}],"rel":"sport-50"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-kickball.png"}],"rel":"sport-18"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-lacrosse.png"}],"rel":"sport-10"},{"href":"http://localhost:3000/sports/79","data":[{"name":"id","value":79},{"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":"Musical
|
707
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-musical_group.png"}],"rel":"sport-79"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-netball.png"}],"rel":"sport-40"},{"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
|
708
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-non-sport_group.png"}],"rel":"sport-52"},{"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
|
709
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-other_sport.png"}],"rel":"sport-24"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-outrigger.png"}],"rel":"sport-53"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-paintball.png"}],"rel":"sport-19"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-petanque.png"}],"rel":"sport-45"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-pickleball.png"}],"rel":"sport-63"},{"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
|
710
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-polo.png"}],"rel":"sport-20"},{"href":"http://localhost:3000/sports/84","data":[{"name":"id","value":84},{"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":"Pool
|
711
|
-
and Billiards"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-pool_and_billiards.png"}],"rel":"sport-84"},{"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
|
712
|
-
Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
|
713
|
-
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
714
|
-
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-quad_rugby.png"}],"rel":"sport-67"},{"href":"http://localhost:3000/sports/78","data":[{"name":"id","value":78},{"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":"Quidditch"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-quidditch.png"}],"rel":"sport-78"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-racquetball.png"}],"rel":"sport-55"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ringette.png"}],"rel":"sport-51"},{"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
|
715
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-roller_derby.png"}],"rel":"sport-48"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-rowing.png"}],"rel":"sport-21"},{"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
|
716
|
-
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
717
|
-
Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-rugby.png"}],"rel":"sport-9"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-running.png"}],"rel":"sport-41"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-sailing.png"}],"rel":"sport-47"},{"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
|
718
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-sled_hockey.png"}],"rel":"sport-65"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-slo-pitch.png"}],"rel":"sport-61"},{"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
|
719
|
-
Time"},{"name":"shootout_abbrev","value":"PK"},{"name":"shootout_label","value":"Penalty
|
720
|
-
Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-soccer.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-softball.png"}],"rel":"sport-4"},{"href":"http://localhost:3000/sports/88","data":[{"name":"id","value":88},{"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":"Squash"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-squash.png"}],"rel":"sport-88"},{"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
|
721
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-street_hockey.png"}],"rel":"sport-62"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-swimming.png"}],"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-tennis.png"}],"rel":"sport-43"},{"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
|
722
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-track_and_field.png"}],"rel":"sport-58"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ultimate.png"}],"rel":"sport-22"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-volleyball.png"}],"rel":"sport-6"},{"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
|
723
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-water_polo.png"}],"rel":"sport-23"},{"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
|
724
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_basketball.png"}],"rel":"sport-64"},{"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
|
725
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_hockey.png"}],"rel":"sport-73"},{"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
|
726
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_lacrosse.png"}],"rel":"sport-75"},{"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
|
727
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_softball.png"}],"rel":"sport-66"},{"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
|
728
|
-
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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_volleyball.png"}],"rel":"sport-74"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wiffleball.png"}],"rel":"sport-11"},{"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},{"name":"created_at","value":"2016-08-10T23:47:17Z","type":"DateTime"},{"name":"updated_at","value":"2016-08-10T23:47:17Z","type":"DateTime"}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wrestling.png"}],"rel":"sport-49"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/statistics","rel":"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},{"name":"type","value":"statistic"}]},"links":[{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"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},{"name":"page_size","value":null,"prompt":"The
|
680
|
+
a sponser''s logo.","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/sports","rel":"sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sports?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/statistics","rel":"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},{"name":"type","value":"statistic"}]},"links":[{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
729
681
|
number of items to return for each page. Sending this parameter with the query
|
730
682
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
731
683
|
number of the page to be returned. This requires that paging be turned on
|
@@ -734,12 +686,12 @@ http_interactions:
|
|
734
686
|
array of the ids in the order that they are to be moved to"}]},{"rel":"import_from_template","href":"http://localhost:3000/statistics/import_from_template","prompt":"import
|
735
687
|
all statistics and statistic groups from a template of a sport_id to a specified
|
736
688
|
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
|
737
|
-
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.
|
738
|
-
data for a team''s statistics, including team_statistics and member_statistics","href":"http://localhost:3000/statistic_aggregates","rel":"statistic_aggregates","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_aggregates/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"statistic_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
689
|
+
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.520.0","prompt":"Aggregate
|
690
|
+
data for a team''s statistics, including team_statistics and member_statistics","href":"http://localhost:3000/statistic_aggregates","rel":"statistic_aggregates","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_aggregates?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_aggregates/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"statistic_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
739
691
|
number of items to return for each page. Sending this parameter with the query
|
740
692
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
741
693
|
number of the page to be returned. This requires that paging be turned on
|
742
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
694
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/statistic_data","rel":"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},{"name":"type","value":"statistic_datum"}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_data?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"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},{"name":"member_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
743
695
|
number of items to return for each page. Sending this parameter with the query
|
744
696
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
745
697
|
number of the page to be returned. This requires that paging be turned on
|
@@ -748,17 +700,17 @@ http_interactions:
|
|
748
700
|
array of the statistic_datum templates to be updated that correspond to the
|
749
701
|
template for the rel ''statistic_datum''. Each template must have the following
|
750
702
|
elements present: team_id, event_id, statistic_id."}]},{"rel":"bulk_delete_statistic_data","href":"http://localhost:3000/statistic_data/bulk_delete","prompt":"Delete
|
751
|
-
several statistic data with a single command.","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.
|
703
|
+
several statistic data with a single command.","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/statistic_groups","rel":"statistic_groups","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"type","value":"statistic_group"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
752
704
|
number of items to return for each page. Sending this parameter with the query
|
753
705
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
754
706
|
number of the page to be returned. This requires that paging be turned on
|
755
707
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_statistic_groups","href":"http://localhost:3000/statistic_groups/reorder","prompt":"reorder
|
756
708
|
the statistic groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
757
|
-
array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.
|
709
|
+
array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_fees","rel":"team_fees","template":{"data":[{"name":"description","value":null},{"name":"amount","value":null},{"name":"notes","value":null},{"name":"team_id","value":null},{"name":"type","value":"team_fee"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_fees/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
758
710
|
number of items to return for each page. Sending this parameter with the query
|
759
711
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
760
712
|
number of the page to be returned. This requires that paging be turned on
|
761
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
713
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_media","rel":"team_media","template":{"data":[{"name":"description","value":null},{"name":"team_media_group_id","value":null},{"name":"type","value":"team_medium"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media/search","data":[{"name":"team_id","value":null},{"name":"team_media_group_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"height","value":null},{"name":"width","value":null},{"name":"crop","value":null},{"name":"page_size","value":null,"prompt":"The
|
762
714
|
number of items to return for each page. Sending this parameter with the query
|
763
715
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
764
716
|
number of the page to be returned. This requires that paging be turned on
|
@@ -773,45 +725,45 @@ http_interactions:
|
|
773
725
|
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
|
774
726
|
the specified team_medium_ids","data":[{"name":"team_medium_ids","value":null,"prompt":"A
|
775
727
|
comma delimited list of team medium ids"}]},{"rel":"create_team_video_link","href":"http://localhost:3000/team_media/create_video_link","prompt":"Add
|
776
|
-
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":"position","value":null},{"name":"video_url","value":null}]},{"rel":"facebook_share_team_medium","href":"http://localhost:3000/team_media/facebook_share","prompt":"
|
777
|
-
|
728
|
+
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":"position","value":null},{"name":"video_url","value":null}]},{"rel":"facebook_share_team_medium","href":"http://localhost:3000/team_media/facebook_share","prompt":"%{old}
|
729
|
+
is deprecated and will be removed in a future version, use %{new} instead.","data":[{"name":"team_medium_id","value":null},{"name":"is_suppressed_from_feed","value":null,"prompt":"Whether
|
778
730
|
or not to post this to the facebook news feed. Valid values are either ''true''
|
779
731
|
or ''false'' and will default to ''false''"},{"name":"caption","value":null,"prompt":"Caption
|
780
732
|
for the team media."},{"name":"facebook_page_id","value":null,"prompt":"The
|
781
733
|
id to the page on facebook to post to."}]},{"rel":"reorder_team_media","href":"http://localhost:3000/team_media/reorder","prompt":"Reorder
|
782
734
|
the team media based on the sorted_ids provided.","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
783
|
-
array of the ids in the order that they are to be moved to."}]}]}},{"collection":{"version":"3.
|
735
|
+
array of the ids in the order that they are to be moved to."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_medium_comments","rel":"team_medium_comments","template":{"data":[{"name":"comment","value":null},{"name":"member_id","value":null},{"name":"team_medium_id","value":null},{"name":"type","value":"team_medium_comment"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
784
736
|
number of items to return for each page. Sending this parameter with the query
|
785
737
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
786
738
|
number of the page to be returned. This requires that paging be turned on
|
787
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
739
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_media_groups","rel":"team_media_groups","template":{"data":[{"name":"is_private","value":null},{"name":"name","value":null},{"name":"media_format","value":null},{"name":"team_id","value":null},{"name":"type","value":"team_media_group"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
788
740
|
number of items to return for each page. Sending this parameter with the query
|
789
741
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
790
742
|
number of the page to be returned. This requires that paging be turned on
|
791
743
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_team_media_groups","href":"http://localhost:3000/team_media_groups/reorder","prompt":"reorder
|
792
744
|
the team media groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
793
|
-
array of the ids in the order that they are to be moved to"}]},{"rel":"facebook_share_team_media_group","href":"http://localhost:3000/team_media_groups/facebook_share","prompt":"
|
794
|
-
|
745
|
+
array of the ids in the order that they are to be moved to"}]},{"rel":"facebook_share_team_media_group","href":"http://localhost:3000/team_media_groups/facebook_share","prompt":"%{old}
|
746
|
+
is deprecated and will be removed in a future version, use %{new} instead.","data":[{"name":"team_media_group_id","value":null},{"name":"is_suppressed_from_feed","value":null,"prompt":"Whether
|
795
747
|
or not to post this to the facebook news feed. Valid values are either ''true''
|
796
748
|
or ''false'' and will default to ''false''"},{"name":"album_name","value":null,"prompt":"The
|
797
749
|
caption used when sharing the medium on facebook. This will default to the
|
798
750
|
description of the medium"},{"name":"facebook_page_id","value":null,"prompt":"The
|
799
751
|
id used by facebook of the page to post the medium to. If omitted, this will
|
800
|
-
go to the user''s personal page."}]}]}},{"collection":{"version":"3.
|
801
|
-
(This endpoint is subject to change) Returns a collection of team photos.","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_photos"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_photos/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"height","value":null},{"name":"width","value":null},{"name":"crop","value":null},{"name":"page_size","value":null,"prompt":"The
|
752
|
+
go to the user''s personal page."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_photos","rel":"team_photos","prompt":"BETA:
|
753
|
+
(This endpoint is subject to change) Returns a collection of team photos.","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_photos?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_photos/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"height","value":null},{"name":"width","value":null},{"name":"crop","value":null},{"name":"page_size","value":null,"prompt":"The
|
802
754
|
number of items to return for each page. Sending this parameter with the query
|
803
755
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
804
756
|
number of the page to be returned. This requires that paging be turned on
|
805
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
757
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_public_sites","rel":"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},{"name":"type","value":"team_public_site"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_public_sites?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_public_sites/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
806
758
|
number of items to return for each page. Sending this parameter with the query
|
807
759
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
808
760
|
number of the page to be returned. This requires that paging be turned on
|
809
761
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_team_public_photo","href":"http://localhost:3000/team_public_sites/upload_team_public_photo","prompt":"Upload
|
810
762
|
a team public photo. This must be a multi-part POST.","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
|
811
763
|
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
|
812
|
-
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.
|
764
|
+
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/teams","rel":"teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null,"prompt":"The
|
813
765
|
time_zone parameter is required when creating a team, but for changing a team''s
|
814
|
-
time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"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_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"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":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_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":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"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_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"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_photos","href":"http://localhost:3000/member_photos"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"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_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"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_photos","href":"http://localhost:3000/team_photos"},{"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","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
766
|
+
time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"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_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"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":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_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":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"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_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"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_photos","href":"http://localhost:3000/member_photos"},{"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":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"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_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"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_photos","href":"http://localhost:3000/team_photos"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
815
767
|
number of items to return for each page. Sending this parameter with the query
|
816
768
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
817
769
|
number of the page to be returned. This requires that paging be turned on
|
@@ -820,21 +772,27 @@ http_interactions:
|
|
820
772
|
''desc''."}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
|
821
773
|
all teams accessible to current user that have the provided sport_id and have
|
822
774
|
at least one statistic to import","data":[{"name":"sport_id","value":null}]},{"rel":"active_teams","href":"http://localhost:3000/teams/active","prompt":"Finds
|
823
|
-
all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null}
|
775
|
+
all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null},{"name":"division_id","value":null}]},{"rel":"division_search","href":"http://localhost:3000/teams/division_search","prompt":"Search
|
776
|
+
the teams on the division_id and its descendants or a commissioner''s user_id.","data":[{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"is_active","value":null},{"name":"is_commissioner","value":null},{"name":"page_size","value":null,"prompt":"The
|
777
|
+
number of items to return for each page. Sending this parameter with the query
|
778
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
779
|
+
number of the page to be returned. This requires that paging be turned on
|
780
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
|
824
781
|
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
|
825
782
|
team''s time zone. This is currently the only method of updating a team''s
|
826
|
-
time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null
|
783
|
+
time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null,"deprecated":true,"prompt":"%{old}
|
784
|
+
is deprecated and will be removed in a future version, use %{new} instead."}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
|
827
785
|
all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]},{"rel":"invite_team_owners","href":"http://localhost:3000/teams/invite_team_owners","prompt":"Beta:
|
828
786
|
(This endpoint subject to change) Allow commissioners to send invitations
|
829
787
|
to all owners on active teams in the division.","data":[{"name":"id","value":null}]},{"rel":"change_owner","href":"http://localhost:3000/teams/change_owner","prompt":"Beta:
|
830
788
|
(This endpoint subject to change) Allow commissioners to change the owner
|
831
|
-
of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"
|
832
|
-
|
833
|
-
|
789
|
+
of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"toggle_team_visibility_on_dashboard","href":"http://localhost:3000/teams/toggle_team_visibility_on_dashboard","prompt":"Toggles
|
790
|
+
the visibility of teams on the list of active teams, per user. Requires a
|
791
|
+
single id or a comma separated list of ''team_id''s","data":[{"name":"team_ids","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/teams_paypal_preferences","rel":"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},{"name":"type","value":"team_paypal_preferences"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_paypal_preferences?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_paypal_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
834
792
|
number of items to return for each page. Sending this parameter with the query
|
835
793
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
836
794
|
number of the page to be returned. This requires that paging be turned on
|
837
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
795
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/teams_preferences","rel":"teams_preferences","template":{"data":[{"name":"age_group","value":null,"prompt":"Valid
|
838
796
|
age groups when skill_level is '''', ''Recreational'' or ''Competitive'' are:
|
839
797
|
''5 & under'', ''6 & under'', ''7 & under'', ''8 & under'', ''9 & under'',
|
840
798
|
''10 & under'', ''11 & under'', ''12 & under'', ''13 & under'', ''14 & under'',
|
@@ -842,7 +800,8 @@ http_interactions:
|
|
842
800
|
under''. Valid age groups when skill_level is ''School'' are: ''College/University'',
|
843
801
|
''High School'', ''Middle School/Jr. High'', ''6th Grade'', ''5th Grade'',
|
844
802
|
''4th Grade'', ''3rd Grade'', ''2nd Grade'', ''1st Grade'' and ''Kindergarten
|
845
|
-
or earlier''."},{"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
|
803
|
+
or earlier''."},{"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,"prompt":"Valid
|
804
|
+
sort orders are ''jersey'', ''name'', and ''date''."},{"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
|
846
805
|
is deprecated and will be removed in a future version, use team_media_show_tab
|
847
806
|
instead."},{"name":"team_media_show_tab","value":null},{"name":"gender","value":null,"prompt":"Valid
|
848
807
|
genders are: ''Men'', ''Women'' and ''Coed''."},{"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,"deprecated":true,"prompt":"introduction_text
|
@@ -850,7 +809,7 @@ http_interactions:
|
|
850
809
|
not recommended it will no longer be stored."},{"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,"prompt":"Valid
|
851
810
|
skill levels are: ''Recreational'', ''Competitive'' and ''School''."},{"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
|
852
811
|
is deprecated and will be removed in a future version, use is_tracked_items_private
|
853
|
-
instead."},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null},{"name":"type","value":"team_preferences"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
812
|
+
instead."},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null},{"name":"type","value":"team_preferences"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_preferences?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
854
813
|
number of items to return for each page. Sending this parameter with the query
|
855
814
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
856
815
|
number of the page to be returned. This requires that paging be turned on
|
@@ -858,61 +817,43 @@ http_interactions:
|
|
858
817
|
a team logo. This must be a multi-part POST.","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
|
859
818
|
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
|
860
819
|
a team photo. This must be a multi-part POST.","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
|
861
|
-
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.
|
820
|
+
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/teams_results","rel":"teams_results","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_results?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
862
821
|
number of items to return for each page. Sending this parameter with the query
|
863
822
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
864
823
|
number of the page to be returned. This requires that paging be turned on
|
865
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
866
|
-
Dhabi"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-abu-dhabi"},{"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/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/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/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
|
867
|
-
Samoa"},{"name":"iana_name","value":"Pacific/Pago_Pago"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-american-samoa"},{"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/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/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/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/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/atlantic-time-canada","data":[{"name":"id","value":"atlantic-time-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Atlantic
|
868
|
-
Time (Canada)"},{"name":"iana_name","value":"America/Halifax"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-atlantic-time-canada"},{"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/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/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/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/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/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/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/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/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/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/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/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/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/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/buenos-aires","data":[{"name":"id","value":"buenos-aires"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Buenos
|
869
|
-
Aires"},{"name":"iana_name","value":"America/Argentina/Buenos_Aires"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-buenos-aires"},{"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/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/cape-verde-is","data":[{"name":"id","value":"cape-verde-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cape
|
870
|
-
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/caracas","data":[{"name":"id","value":"caracas"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Caracas"},{"name":"iana_name","value":"America/Caracas"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-caracas"},{"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/central-america","data":[{"name":"id","value":"central-america"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Central
|
871
|
-
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
|
872
|
-
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/chatham-is","data":[{"name":"id","value":"chatham-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chatham
|
873
|
-
Is."},{"name":"iana_name","value":"Pacific/Chatham"},{"name":"offset","value":"+12:45"}],"rel":"TimeZone-chatham-is"},{"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/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/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/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/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/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/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/eastern-time-us-canada","data":[{"name":"id","value":"eastern-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Eastern
|
874
|
-
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/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/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/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/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/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/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/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/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/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/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/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/hong-kong","data":[{"name":"id","value":"hong-kong"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hong
|
875
|
-
Kong"},{"name":"iana_name","value":"Asia/Hong_Kong"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-hong-kong"},{"href":"http://localhost:3000/time_zones/indiana-east","data":[{"name":"id","value":"indiana-east"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Indiana
|
876
|
-
(East)"},{"name":"iana_name","value":"America/Indiana/Indianapolis"},{"name":"offset","value":"-05:00"}],"rel":"TimeZone-indiana-east"},{"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
|
877
|
-
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/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/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/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/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/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/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/kaliningrad","data":[{"name":"id","value":"kaliningrad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kaliningrad"},{"name":"iana_name","value":"Europe/Kaliningrad"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-kaliningrad"},{"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/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/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/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/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/kuala-lumpur","data":[{"name":"id","value":"kuala-lumpur"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuala
|
878
|
-
Lumpur"},{"name":"iana_name","value":"Asia/Kuala_Lumpur"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-kuala-lumpur"},{"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/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/la-paz","data":[{"name":"id","value":"la-paz"},{"name":"type","value":"TimeZone"},{"name":"description","value":"La
|
879
|
-
Paz"},{"name":"iana_name","value":"America/La_Paz"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-la-paz"},{"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/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/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/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/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/magadan","data":[{"name":"id","value":"magadan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Magadan"},{"name":"iana_name","value":"Asia/Magadan"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-magadan"},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
|
880
|
-
Is."},{"name":"iana_name","value":"Pacific/Majuro"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-marshall-is"},{"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/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/mexico-city","data":[{"name":"id","value":"mexico-city"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mexico
|
881
|
-
City"},{"name":"iana_name","value":"America/Mexico_City"},{"name":"offset","value":"-06:00"}],"rel":"TimeZone-mexico-city"},{"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/midway-island","data":[{"name":"id","value":"midway-island"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Midway
|
882
|
-
Island"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-midway-island"},{"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/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/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/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/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/mountain-time-us-canada","data":[{"name":"id","value":"mountain-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mountain
|
883
|
-
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/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/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/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/new-caledonia","data":[{"name":"id","value":"new-caledonia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
884
|
-
Caledonia"},{"name":"iana_name","value":"Pacific/Noumea"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-new-caledonia"},{"href":"http://localhost:3000/time_zones/new-delhi","data":[{"name":"id","value":"new-delhi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
|
885
|
-
Delhi"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-new-delhi"},{"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/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/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/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/pacific-time-us-canada","data":[{"name":"id","value":"pacific-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pacific
|
886
|
-
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/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/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/port-moresby","data":[{"name":"id","value":"port-moresby"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Port
|
887
|
-
Moresby"},{"name":"iana_name","value":"Pacific/Port_Moresby"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-port-moresby"},{"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/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/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/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/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/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/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/samara","data":[{"name":"id","value":"samara"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samara"},{"name":"iana_name","value":"Europe/Samara"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-samara"},{"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"}],"rel":"TimeZone-samoa"},{"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"}],"rel":"TimeZone-santiago"},{"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/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/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/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/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/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/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/solomon-is","data":[{"name":"id","value":"solomon-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Solomon
|
888
|
-
Is."},{"name":"iana_name","value":"Pacific/Guadalcanal"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-solomon-is"},{"href":"http://localhost:3000/time_zones/srednekolymsk","data":[{"name":"id","value":"srednekolymsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Srednekolymsk"},{"name":"iana_name","value":"Asia/Srednekolymsk"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-srednekolymsk"},{"href":"http://localhost:3000/time_zones/sri-jayawardenepura","data":[{"name":"id","value":"sri-jayawardenepura"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sri
|
889
|
-
Jayawardenepura"},{"name":"iana_name","value":"Asia/Colombo"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-sri-jayawardenepura"},{"href":"http://localhost:3000/time_zones/st-petersburg","data":[{"name":"id","value":"st-petersburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"St.
|
890
|
-
Petersburg"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-st-petersburg"},{"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/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/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/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/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/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/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/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/tokelau-is","data":[{"name":"id","value":"tokelau-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokelau
|
891
|
-
Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"},{"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/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/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/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/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/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/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/volgograd","data":[{"name":"id","value":"volgograd"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Volgograd"},{"name":"iana_name","value":"Europe/Volgograd"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-volgograd"},{"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/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/west-central-africa","data":[{"name":"id","value":"west-central-africa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"West
|
892
|
-
Central Africa"},{"name":"iana_name","value":"Africa/Algiers"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-west-central-africa"},{"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/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/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"}]}},{"collection":{"version":"3.306.2","href":"http://localhost:3000/tracked_item_statuses","rel":"tracked_item_statuses","template":{"data":[{"name":"status_code","value":null},{"name":"tracked_item_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"tracked_item_status"}]},"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},{"name":"page_size","value":null,"prompt":"The
|
824
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/team_statistics","rel":"team_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_statistics?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"},{"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.520.0","href":"http://localhost:3000/time_zones","rel":"time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/time_zones?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/tracked_item_statuses","rel":"tracked_item_statuses","template":{"data":[{"name":"status_code","value":null},{"name":"tracked_item_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"tracked_item_status"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"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},{"name":"page_size","value":null,"prompt":"The
|
893
825
|
number of items to return for each page. Sending this parameter with the query
|
894
826
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
895
827
|
number of the page to be returned. This requires that paging be turned on
|
896
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
828
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/tracked_items","rel":"tracked_items","template":{"data":[{"name":"name","value":null},{"name":"team_id","value":null},{"name":"type","value":"tracked_item"}]},"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_items/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
897
829
|
number of items to return for each page. Sending this parameter with the query
|
898
830
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
899
831
|
number of the page to be returned. This requires that paging be turned on
|
900
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
832
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/tsl_metadata","rel":"tsl_metadata","template":{"data":[{"name":"user_id","value":null},{"name":"type","value":"tsl_metadatum"},{"name":"metadata","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_metadata?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null},{"name":"page_size","value":null,"prompt":"The
|
901
833
|
number of items to return for each page. Sending this parameter with the query
|
902
834
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
903
835
|
number of the page to be returned. This requires that paging be turned on
|
904
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
836
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/tsl_chats","rel":"tsl_chats","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_chats?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"commands":[{"rel":"send_push","href":"http://localhost:3000/tsl_chats/send_push","data":[{"name":"device_token","value":null},{"name":"event_id","value":null},{"name":"firebase_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null},{"name":"team_id","value":null},{"name":"timestamp","value":null},{"name":"type","value":null},{"name":"url","value":null},{"name":"username","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/tsl_scores","rel":"tsl_scores","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_scores?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_scores/search","prompt":"BETA:
|
905
837
|
(This endpoint is subject to change) Returns scores for TeamSnap Live events","data":[{"name":"event_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
906
838
|
number of items to return for each page. Sending this parameter with the query
|
907
839
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
908
840
|
number of the page to be returned. This requires that paging be turned on
|
909
|
-
by also providing the page_size parameter."}]}],"commands":[{"rel":"send_push","href":"http://localhost:3000/tsl_scores/send_push","data":[{"name":"device_token","value":null},{"name":"event_id","value":null},{"name":"firebase_id","value":null},{"name":"game_state","value":null},{"name":"member_id","value":null},{"name":"opponent_name","value":null},{"name":"score_for","value":null},{"name":"score_against","value":null},{"name":"sport_score_style","value":null},{"name":"team_id","value":null},{"name":"team_name","value":null},{"name":"timestamp","value":null}]}]}},{"collection":{"version":"3.
|
841
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"send_push","href":"http://localhost:3000/tsl_scores/send_push","data":[{"name":"device_token","value":null},{"name":"event_id","value":null},{"name":"firebase_id","value":null},{"name":"game_state","value":null},{"name":"member_id","value":null},{"name":"opponent_name","value":null},{"name":"score_for","value":null},{"name":"score_against","value":null},{"name":"sport_score_style","value":null},{"name":"team_id","value":null},{"name":"team_name","value":null},{"name":"timestamp","value":null}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/users","rel":"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,"deprecated":true,"prompt":"facebook_id
|
842
|
+
is deprecated and has been removed. Continued use of facebook_id is not recommended
|
843
|
+
it will no longer be stored."},{"name":"facebook_access_token","value":null,"deprecated":true,"prompt":"facebook_access_token
|
844
|
+
is deprecated and has been removed. Continued use of facebook_access_token
|
845
|
+
is not recommended it will no longer be stored."},{"name":"type","value":"user"}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"experiments","href":"http://localhost:3000/experiments"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"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?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null},{"name":"email","value":null},{"name":"page_size","value":null,"prompt":"The
|
846
|
+
number of items to return for each page. Sending this parameter with the query
|
847
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
848
|
+
number of the page to be returned. This requires that paging be turned on
|
849
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.520.0","href":"http://localhost:3000/wepay_accounts","rel":"wepay_accounts","prompt":"Beta:
|
850
|
+
(This endpoint is subject to change) Returns wepay_accounts for a division","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/wepay_accounts?hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916"}],"queries":[{"rel":"search","href":"http://localhost:3000/wepay_accounts/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"is_active","value":null},{"name":"page_size","value":null,"prompt":"The
|
910
851
|
number of items to return for each page. Sending this parameter with the query
|
911
852
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
912
853
|
number of the page to be returned. This requires that paging be turned on
|
913
854
|
by also providing the page_size parameter."}]}]}}]'
|
914
855
|
http_version: '1.1'
|
915
856
|
adapter_metadata:
|
916
|
-
effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=
|
917
|
-
recorded_at:
|
857
|
+
effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=abd445f4-7bd8-4100-89be-8051130c78b3&hmac_timestamp=1502318916
|
858
|
+
recorded_at: Wed, 09 Aug 2017 22:48:37 GMT
|
918
859
|
recorded_with: VCR 2.9.3
|