teamsnap_rb 2.0.0.beta → 2.0.0.beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/lib/teamsnap.rb +2 -2
- data/lib/teamsnap/collection.rb +1 -1
- data/lib/teamsnap/response.rb +1 -1
- data/lib/teamsnap/version.rb +1 -1
- data/spec/cassettes/apiv3-init.yml +89 -286
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +9 -9
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/passes_them_to_the_faraday_client_using_method_missing.yml +9 -9
- data/spec/cassettes/teamsnap__collection/adds_find_if_search_is_available.yml +12 -12
- data/spec/cassettes/teamsnap__collection/adds_href_to_items.yml +10 -10
- data/spec/cassettes/teamsnap__collection/can_follow_plural_links.yml +39 -39
- data/spec/cassettes/teamsnap__collection/can_follow_singular_links.yml +22 -22
- data/spec/cassettes/teamsnap__collection/can_handle_links_with_no_data.yml +19 -19
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands.yml +10 -10
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands_with_multiple_params.yml +9 -9
- data/spec/cassettes/teamsnap__collection/handles_fetching_data_via_queries.yml +12 -12
- data/spec/cassettes/teamsnap__collection/handles_queries_with_no_data.yml +9 -9
- data/spec/cassettes/teamsnap__collection/raises_an_exception_if_find_returns_nothing.yml +9 -9
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +23 -23
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +19 -19
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +19 -19
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +22 -22
- data/spec/cassettes/teamsnap__structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +9 -9
- data/spec/cassettes/teamsnap__structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +9 -9
- data/spec/cassettes/teamsnap__structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_empty_bulk_load.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_bulk_load/{can_handle_an_error_with_bulk_load.yml → can_handle_an_error_with_bulk_load_without_a_team_id.yml} +7 -7
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_use_bulk_load.yml +30 -30
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_DELETE_on_the_given_client.yml +52 -57
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_GET_on_the_given_client.yml +9 -9
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_PATCH_on_the_given_client.yml +53 -57
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_POST_on_the_given_client.yml +53 -57
- data/spec/cassettes/teamsnap_rb/_run/processes_the_response.yml +36 -36
- data/spec/teamsnap/collection_spec.rb +2 -2
- data/spec/teamsnap_spec.rb +12 -0
- metadata +4 -46
- data/spec/cassettes/client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +0 -56
- data/spec/cassettes/structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +0 -110
- data/spec/cassettes/structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +0 -57
- data/spec/cassettes/structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +0 -56
- data/spec/cassettes/structure/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +0 -56
- data/spec/cassettes/teamsnap__collection/can_handle_no_argument_errors_generated_by_command.yml +0 -42
- data/spec/cassettes/teamsnap_rb/adds_find_if_search_is_available.yml +0 -61
- data/spec/cassettes/teamsnap_rb/adds_href_to_items.yml +0 -62
- data/spec/cassettes/teamsnap_rb/can_follow_plural_links.yml +0 -179
- data/spec/cassettes/teamsnap_rb/can_follow_singular_links.yml +0 -120
- data/spec/cassettes/teamsnap_rb/can_handle_links_with_no_data.yml +0 -107
- data/spec/cassettes/teamsnap_rb/can_handle_no_argument_errors_generated_by_command.yml +0 -42
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands.yml +0 -64
- data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands_with_multiple_params.yml +0 -70
- data/spec/cassettes/teamsnap_rb/handles_fetching_data_via_queries.yml +0 -61
- data/spec/cassettes/teamsnap_rb/handles_queries_with_no_data.yml +0 -57
- data/spec/cassettes/teamsnap_rb/raises_an_exception_if_find_returns_nothing.yml +0 -57
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +0 -117
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +0 -111
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +0 -111
- data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +0 -124
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 897a84665e55360fd083fda183060035e074569f
|
4
|
+
data.tar.gz: bc47149391ec61afc1968f77c8bc001a208a8aac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5240cc910f86789b1d57be0e3b88984c2405dfb712136091cfb7ceef409e1b89fd8cc8250818e9096dfd8354f5f077a1316851bae75e554cafd4549e0812b1d1
|
7
|
+
data.tar.gz: e15d940fdd801a83f73a82e5b9d92f72f8b85e8b4c0be580a310ed5d7cecb1fe1bf721efc2ac37136127385a3542fdae6928d35e6a85479a89bb70ea197dc6d1
|
data/.travis.yml
CHANGED
data/lib/teamsnap.rb
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
module TeamSnap
|
13
13
|
EXCLUDED_RELS = %w(me apiv2_root root self dude sweet random xyzzy schemas
|
14
14
|
authorization plans_all tsl_photos)
|
15
|
-
DEFAULT_URL = "https://
|
15
|
+
DEFAULT_URL = "https://api.teamsnap.com/v3"
|
16
16
|
Error = Class.new(StandardError)
|
17
17
|
NotFound = Class.new(TeamSnap::Error)
|
18
18
|
|
@@ -34,7 +34,7 @@ module TeamSnap
|
|
34
34
|
self.root_client = TeamSnap::Client.new(:token => token)
|
35
35
|
|
36
36
|
## Make the apiv3 root call. collection is parsed JSON
|
37
|
-
collection = TeamSnap.run(root_client, :get,
|
37
|
+
collection = TeamSnap.run(root_client, :get, self.url, {})
|
38
38
|
|
39
39
|
## Setup Dynamic Classes from the collection
|
40
40
|
TeamSnap::Structure.init(root_client, collection)
|
data/lib/teamsnap/collection.rb
CHANGED
@@ -25,7 +25,7 @@ module TeamSnap
|
|
25
25
|
obj.define_singleton_method(rel) do |client, *args|
|
26
26
|
args = Hash[*args]
|
27
27
|
|
28
|
-
unless args.
|
28
|
+
unless (args.keys & valid_args).any?
|
29
29
|
raise ArgumentError.new(
|
30
30
|
"Invalid argument(s). Valid argument(s) are #{valid_args.inspect}"
|
31
31
|
)
|
data/lib/teamsnap/response.rb
CHANGED
@@ -76,7 +76,7 @@ module TeamSnap
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def process_action
|
79
|
-
body = Oj.load(@resp.body)
|
79
|
+
body = Oj.load(@resp.body) || {}
|
80
80
|
@collection = body.fetch(:collection) { {} }
|
81
81
|
@message = "`#{@via}` call was successful"
|
82
82
|
@objects = TeamSnap::Item.load_items(@client, @collection)
|
data/lib/teamsnap/version.rb
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://localhost:3000
|
5
|
+
uri: http://localhost:3000?hmac_client_id=classic&hmac_nonce=8de4fa43-f26f-43c4-9d9c-2a38007689ca&hmac_timestamp=1458775791
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.9.
|
11
|
+
- Faraday v0.9.2
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- c061fa1c11c54e2f29b3e34ff15fb01b12fca01037cceb40b7c5665bacfd7add
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 200
|
@@ -23,20 +23,20 @@ http_interactions:
|
|
23
23
|
X-Content-Type-Options:
|
24
24
|
- nosniff
|
25
25
|
ETag:
|
26
|
-
- '"
|
26
|
+
- '"0ca82baaf110be3726eedbbd31b79152"'
|
27
27
|
Cache-Control:
|
28
28
|
- max-age=0, private, must-revalidate
|
29
29
|
X-Request-Id:
|
30
|
-
-
|
30
|
+
- 08dbd4d7-1972-418a-8896-2d330d28e7f7
|
31
31
|
X-Runtime:
|
32
|
-
- '0.
|
32
|
+
- '0.462885'
|
33
33
|
Connection:
|
34
34
|
- keep-alive
|
35
35
|
Server:
|
36
36
|
- thin
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
39
|
+
string: '{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
40
40
|
a heterogeneous collection of the specified types for a specified team or
|
41
41
|
teams. Additional filters can be passed into requested types by passing them
|
42
42
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -64,217 +64,19 @@ http_interactions:
|
|
64
64
|
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
65
65
|
http_version: '1.1'
|
66
66
|
adapter_metadata:
|
67
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=
|
68
|
-
recorded_at:
|
67
|
+
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=8de4fa43-f26f-43c4-9d9c-2a38007689ca&hmac_timestamp=1458775791
|
68
|
+
recorded_at: Wed, 23 Mar 2016 23:29:51 GMT
|
69
69
|
- request:
|
70
70
|
method: get
|
71
|
-
uri: http://localhost:3000
|
71
|
+
uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=78c1368b-15ca-46f4-8bce-ad99f381b4db&hmac_timestamp=1458775791
|
72
72
|
body:
|
73
73
|
encoding: US-ASCII
|
74
74
|
string: ''
|
75
75
|
headers:
|
76
76
|
User-Agent:
|
77
|
-
- Faraday v0.9.
|
77
|
+
- Faraday v0.9.2
|
78
78
|
X-Teamsnap-Hmac:
|
79
|
-
-
|
80
|
-
response:
|
81
|
-
status:
|
82
|
-
code: 200
|
83
|
-
message: OK
|
84
|
-
headers:
|
85
|
-
Content-Type:
|
86
|
-
- application/vnd.collection+json
|
87
|
-
Content-Length:
|
88
|
-
- '9688'
|
89
|
-
X-Content-Type-Options:
|
90
|
-
- nosniff
|
91
|
-
ETag:
|
92
|
-
- '"41393e2f8cd6c40b6152930dcefe4f14"'
|
93
|
-
Cache-Control:
|
94
|
-
- max-age=0, private, must-revalidate
|
95
|
-
X-Request-Id:
|
96
|
-
- d0940ac1-22fe-4afb-a2aa-289d5df5f603
|
97
|
-
X-Runtime:
|
98
|
-
- '0.063238'
|
99
|
-
Connection:
|
100
|
-
- keep-alive
|
101
|
-
Server:
|
102
|
-
- thin
|
103
|
-
body:
|
104
|
-
encoding: UTF-8
|
105
|
-
string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
106
|
-
a heterogeneous collection of the specified types for a specified team or
|
107
|
-
teams. Additional filters can be passed into requested types by passing them
|
108
|
-
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
109
|
-
Any filter can be passed that is available on the search for the specified
|
110
|
-
type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
|
111
|
-
return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
|
112
|
-
comma separated list of singular types that you would like to scope the rest
|
113
|
-
of the related result sets to. For instance, scoping assignments to events
|
114
|
-
and providing a filter on events will return only assignments for the events
|
115
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
116
|
-
of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
|
117
|
-
a heterogeneous collection of the specified types. You must pass at least
|
118
|
-
one valid filter in, filters can be passed into requested types by passing
|
119
|
-
them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
120
|
-
Any filter can be passed that is available on the search for the specified
|
121
|
-
type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
|
122
|
-
searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
|
123
|
-
comma separated list of singular types that you would like to scope the rest
|
124
|
-
of the related result sets to. For instance, scoping assignments to events
|
125
|
-
and providing a filter on events will return only assignments for the events
|
126
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
127
|
-
of singular types that you want returned."}]},{"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
|
128
|
-
any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
|
129
|
-
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
|
130
|
-
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
131
|
-
http_version: '1.1'
|
132
|
-
adapter_metadata:
|
133
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=84170a08-a03f-44ba-94ba-9f07452e4c69&hmac_timestamp=1457993767
|
134
|
-
recorded_at: Mon, 14 Mar 2016 22:16:07 GMT
|
135
|
-
- request:
|
136
|
-
method: get
|
137
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=e041cb2a-03c6-40b4-bc23-156e38976834&hmac_timestamp=1457993767
|
138
|
-
body:
|
139
|
-
encoding: US-ASCII
|
140
|
-
string: ''
|
141
|
-
headers:
|
142
|
-
User-Agent:
|
143
|
-
- Faraday v0.9.1
|
144
|
-
X-Teamsnap-Hmac:
|
145
|
-
- 80283e65f0c017efe62d2db533ad34112f5b2bb0aa3fd3ed3e7f4aa389ebd1fe
|
146
|
-
response:
|
147
|
-
status:
|
148
|
-
code: 200
|
149
|
-
message: OK
|
150
|
-
headers:
|
151
|
-
Content-Type:
|
152
|
-
- application/vnd.collection+json
|
153
|
-
Content-Length:
|
154
|
-
- '9688'
|
155
|
-
X-Content-Type-Options:
|
156
|
-
- nosniff
|
157
|
-
ETag:
|
158
|
-
- '"41393e2f8cd6c40b6152930dcefe4f14"'
|
159
|
-
Cache-Control:
|
160
|
-
- max-age=0, private, must-revalidate
|
161
|
-
X-Request-Id:
|
162
|
-
- d88b1ee2-4bb5-401b-aaf8-3136a68eab6b
|
163
|
-
X-Runtime:
|
164
|
-
- '0.060198'
|
165
|
-
Connection:
|
166
|
-
- keep-alive
|
167
|
-
Server:
|
168
|
-
- thin
|
169
|
-
body:
|
170
|
-
encoding: UTF-8
|
171
|
-
string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
172
|
-
a heterogeneous collection of the specified types for a specified team or
|
173
|
-
teams. Additional filters can be passed into requested types by passing them
|
174
|
-
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
175
|
-
Any filter can be passed that is available on the search for the specified
|
176
|
-
type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
|
177
|
-
return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
|
178
|
-
comma separated list of singular types that you would like to scope the rest
|
179
|
-
of the related result sets to. For instance, scoping assignments to events
|
180
|
-
and providing a filter on events will return only assignments for the events
|
181
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
182
|
-
of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
|
183
|
-
a heterogeneous collection of the specified types. You must pass at least
|
184
|
-
one valid filter in, filters can be passed into requested types by passing
|
185
|
-
them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
186
|
-
Any filter can be passed that is available on the search for the specified
|
187
|
-
type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
|
188
|
-
searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
|
189
|
-
comma separated list of singular types that you would like to scope the rest
|
190
|
-
of the related result sets to. For instance, scoping assignments to events
|
191
|
-
and providing a filter on events will return only assignments for the events
|
192
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
193
|
-
of singular types that you want returned."}]},{"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
|
194
|
-
any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
|
195
|
-
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
|
196
|
-
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
197
|
-
http_version: '1.1'
|
198
|
-
adapter_metadata:
|
199
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=e041cb2a-03c6-40b4-bc23-156e38976834&hmac_timestamp=1457993767
|
200
|
-
recorded_at: Mon, 14 Mar 2016 22:16:07 GMT
|
201
|
-
- request:
|
202
|
-
method: get
|
203
|
-
uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=beaee622-0aed-4152-a3d3-d92154bcb589&hmac_timestamp=1457993769
|
204
|
-
body:
|
205
|
-
encoding: US-ASCII
|
206
|
-
string: ''
|
207
|
-
headers:
|
208
|
-
User-Agent:
|
209
|
-
- Faraday v0.9.1
|
210
|
-
X-Teamsnap-Hmac:
|
211
|
-
- b47bcd638464c3bf35fa31a29cf76e81528e4eb2fea7470943699818fd8a57a8
|
212
|
-
response:
|
213
|
-
status:
|
214
|
-
code: 200
|
215
|
-
message: OK
|
216
|
-
headers:
|
217
|
-
Content-Type:
|
218
|
-
- application/vnd.collection+json
|
219
|
-
Content-Length:
|
220
|
-
- '9688'
|
221
|
-
X-Content-Type-Options:
|
222
|
-
- nosniff
|
223
|
-
ETag:
|
224
|
-
- '"41393e2f8cd6c40b6152930dcefe4f14"'
|
225
|
-
Cache-Control:
|
226
|
-
- max-age=0, private, must-revalidate
|
227
|
-
X-Request-Id:
|
228
|
-
- e70a876a-5df7-401b-9a8e-eaa152502d14
|
229
|
-
X-Runtime:
|
230
|
-
- '0.062381'
|
231
|
-
Connection:
|
232
|
-
- keep-alive
|
233
|
-
Server:
|
234
|
-
- thin
|
235
|
-
body:
|
236
|
-
encoding: UTF-8
|
237
|
-
string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
238
|
-
a heterogeneous collection of the specified types for a specified team or
|
239
|
-
teams. Additional filters can be passed into requested types by passing them
|
240
|
-
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
241
|
-
Any filter can be passed that is available on the search for the specified
|
242
|
-
type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
|
243
|
-
return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
|
244
|
-
comma separated list of singular types that you would like to scope the rest
|
245
|
-
of the related result sets to. For instance, scoping assignments to events
|
246
|
-
and providing a filter on events will return only assignments for the events
|
247
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
248
|
-
of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
|
249
|
-
a heterogeneous collection of the specified types. You must pass at least
|
250
|
-
one valid filter in, filters can be passed into requested types by passing
|
251
|
-
them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
252
|
-
Any filter can be passed that is available on the search for the specified
|
253
|
-
type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
|
254
|
-
searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
|
255
|
-
comma separated list of singular types that you would like to scope the rest
|
256
|
-
of the related result sets to. For instance, scoping assignments to events
|
257
|
-
and providing a filter on events will return only assignments for the events
|
258
|
-
returned."},{"name":"types","value":null,"prompt":"A comma separated list
|
259
|
-
of singular types that you want returned."}]},{"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
|
260
|
-
any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
|
261
|
-
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
|
262
|
-
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
|
263
|
-
http_version: '1.1'
|
264
|
-
adapter_metadata:
|
265
|
-
effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=beaee622-0aed-4152-a3d3-d92154bcb589&hmac_timestamp=1457993769
|
266
|
-
recorded_at: Mon, 14 Mar 2016 22:16:09 GMT
|
267
|
-
- request:
|
268
|
-
method: get
|
269
|
-
uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=a0ab3aeb-5e3e-4cbd-a11b-417dae1ed0f3&hmac_timestamp=1457993769
|
270
|
-
body:
|
271
|
-
encoding: US-ASCII
|
272
|
-
string: ''
|
273
|
-
headers:
|
274
|
-
User-Agent:
|
275
|
-
- Faraday v0.9.1
|
276
|
-
X-Teamsnap-Hmac:
|
277
|
-
- 93d7bc6c623ac019e27512db77cffe33d311a88716af89af22d974767b131b4e
|
79
|
+
- 760b83377a0b83024898f7700762cd055b52e3564d4a53ede2712be8c1cba804
|
278
80
|
response:
|
279
81
|
status:
|
280
82
|
code: 200
|
@@ -283,24 +85,24 @@ http_interactions:
|
|
283
85
|
Content-Type:
|
284
86
|
- application/json
|
285
87
|
Content-Length:
|
286
|
-
- '
|
88
|
+
- '345521'
|
287
89
|
X-Content-Type-Options:
|
288
90
|
- nosniff
|
289
91
|
ETag:
|
290
|
-
- '"
|
92
|
+
- '"7cb1287a5092a395b007065ff75dd0e4"'
|
291
93
|
Cache-Control:
|
292
94
|
- max-age=0, private, must-revalidate
|
293
95
|
X-Request-Id:
|
294
|
-
-
|
96
|
+
- e5e01df7-a004-45de-85af-54e4571f765c
|
295
97
|
X-Runtime:
|
296
|
-
- '0.
|
98
|
+
- '0.054607'
|
297
99
|
Connection:
|
298
100
|
- keep-alive
|
299
101
|
Server:
|
300
102
|
- thin
|
301
103
|
body:
|
302
104
|
encoding: UTF-8
|
303
|
-
string: '[{"collection":{"version":"3.
|
105
|
+
string: '[{"collection":{"version":"3.207.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
304
106
|
a heterogeneous collection of the specified types for a specified team or
|
305
107
|
teams. Additional filters can be passed into requested types by passing them
|
306
108
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -325,48 +127,48 @@ http_interactions:
|
|
325
127
|
of singular types that you want returned."}]},{"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
|
326
128
|
any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
|
327
129
|
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
|
328
|
-
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.
|
130
|
+
a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
329
131
|
number of items to return for each page. Sending this parameter with the query
|
330
132
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
331
133
|
number of the page to be returned. This requires that paging be turned on
|
332
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
134
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/assignments","rel":"assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments"}],"queries":[{"rel":"search","href":"http://localhost:3000/assignments/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
333
135
|
number of items to return for each page. Sending this parameter with the query
|
334
136
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
335
137
|
number of the page to be returned. This requires that paging be turned on
|
336
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
138
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
337
139
|
number of items to return for each page. Sending this parameter with the query
|
338
140
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
339
141
|
number of the page to be returned. This requires that paging be turned on
|
340
142
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
|
341
143
|
all future unset availabilities to specified status_code for the specified
|
342
|
-
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.
|
144
|
+
member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
343
145
|
number of items to return for each page. Sending this parameter with the query
|
344
146
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
345
147
|
number of the page to be returned. This requires that paging be turned on
|
346
|
-
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.
|
148
|
+
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.207.1","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":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null},{"name":"type","value":"broadcast_email"}]},"links":[{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_emails"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
347
149
|
number of items to return for each page. Sending this parameter with the query
|
348
150
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
349
151
|
number of the page to be returned. This requires that paging be turned on
|
350
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
152
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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":"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"}],"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
|
351
153
|
number of items to return for each page. Sending this parameter with the query
|
352
154
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
353
155
|
number of the page to be returned. This requires that paging be turned on
|
354
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
156
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
355
157
|
number of items to return for each page. Sending this parameter with the query
|
356
158
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
357
159
|
number of the page to be returned. This requires that paging be turned on
|
358
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
160
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
359
161
|
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"}],"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":"page_size","value":null,"prompt":"The
|
360
162
|
number of items to return for each page. Sending this parameter with the query
|
361
163
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
362
164
|
number of the page to be returned. This requires that paging be turned on
|
363
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
165
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
364
166
|
is deprecated and will be removed in a future version, use is_address_hidden
|
365
167
|
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":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
366
168
|
number of items to return for each page. Sending this parameter with the query
|
367
169
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
368
170
|
number of the page to be returned. This requires that paging be turned on
|
369
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
171
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/countries","rel":"countries","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/countries"}],"queries":[{"rel":"search","href":"http://localhost:3000/countries/search","data":[{"name":"id","value":null},{"name":"name","value":null}]}],"items":[{"href":"http://localhost:3000/countries/020","data":[{"name":"id","value":"020"},{"name":"type","value":"country"},{"name":"name","value":"Andorra"},{"name":"iso_alpha2_code","value":"AD"}],"rel":"country-020"},{"href":"http://localhost:3000/countries/784","data":[{"name":"id","value":"784"},{"name":"type","value":"country"},{"name":"name","value":"United
|
370
172
|
Arab Emirates"},{"name":"iso_alpha2_code","value":"AE"}],"rel":"country-784"},{"href":"http://localhost:3000/countries/004","data":[{"name":"id","value":"004"},{"name":"type","value":"country"},{"name":"name","value":"Afghanistan"},{"name":"iso_alpha2_code","value":"AF"}],"rel":"country-004"},{"href":"http://localhost:3000/countries/028","data":[{"name":"id","value":"028"},{"name":"type","value":"country"},{"name":"name","value":"Antigua
|
371
173
|
and Barbuda"},{"name":"iso_alpha2_code","value":"AG"}],"rel":"country-028"},{"href":"http://localhost:3000/countries/660","data":[{"name":"id","value":"660"},{"name":"type","value":"country"},{"name":"name","value":"Anguilla"},{"name":"iso_alpha2_code","value":"AI"}],"rel":"country-660"},{"href":"http://localhost:3000/countries/008","data":[{"name":"id","value":"008"},{"name":"type","value":"country"},{"name":"name","value":"Albania"},{"name":"iso_alpha2_code","value":"AL"}],"rel":"country-008"},{"href":"http://localhost:3000/countries/051","data":[{"name":"id","value":"051"},{"name":"type","value":"country"},{"name":"name","value":"Armenia"},{"name":"iso_alpha2_code","value":"AM"}],"rel":"country-051"},{"href":"http://localhost:3000/countries/530","data":[{"name":"id","value":"530"},{"name":"type","value":"country"},{"name":"name","value":"Netherlands
|
372
174
|
Antilles"},{"name":"iso_alpha2_code","value":"AN"}],"rel":"country-530"},{"href":"http://localhost:3000/countries/024","data":[{"name":"id","value":"024"},{"name":"type","value":"country"},{"name":"name","value":"Angola"},{"name":"iso_alpha2_code","value":"AO"}],"rel":"country-024"},{"href":"http://localhost:3000/countries/010","data":[{"name":"id","value":"010"},{"name":"type","value":"country"},{"name":"name","value":"Antarctica"},{"name":"iso_alpha2_code","value":"AQ"}],"rel":"country-010"},{"href":"http://localhost:3000/countries/032","data":[{"name":"id","value":"032"},{"name":"type","value":"country"},{"name":"name","value":"Argentina"},{"name":"iso_alpha2_code","value":"AR"}],"rel":"country-032"},{"href":"http://localhost:3000/countries/016","data":[{"name":"id","value":"016"},{"name":"type","value":"country"},{"name":"name","value":"American
|
@@ -446,23 +248,23 @@ http_interactions:
|
|
446
248
|
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
|
447
249
|
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
|
448
250
|
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
|
449
|
-
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.
|
251
|
+
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.207.1","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
|
450
252
|
number of items to return for each page. Sending this parameter with the query
|
451
253
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
452
254
|
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.
|
255
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
454
256
|
number of items to return for each page. Sending this parameter with the query
|
455
257
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
456
258
|
number of the page to be returned. This requires that paging be turned on
|
457
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
259
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
458
260
|
number of items to return for each page. Sending this parameter with the query
|
459
261
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
460
262
|
number of the page to be returned. This requires that paging be turned on
|
461
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
263
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
462
264
|
number of items to return for each page. Sending this parameter with the query
|
463
265
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
464
266
|
number of the page to be returned. This requires that paging be turned on
|
465
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
267
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
466
268
|
number of items to return for each page. Sending this parameter with the query
|
467
269
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
468
270
|
number of the page to be returned. This requires that paging be turned on
|
@@ -472,61 +274,61 @@ http_interactions:
|
|
472
274
|
(This endpoint subject to change) Returns all the nested set descendants of
|
473
275
|
the given division.","data":[{"name":"id","value":null}]},{"rel":"children","href":"http://localhost:3000/divisions/children","prompt":"Beta:
|
474
276
|
(This endpoint subject to change) Returns all the nested set children of the
|
475
|
-
given division.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.
|
277
|
+
given division.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.207.1","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
|
476
278
|
number of items to return for each page. Sending this parameter with the query
|
477
279
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
478
280
|
number of the page to be returned. This requires that paging be turned on
|
479
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
281
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
480
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"}],"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
|
481
283
|
number of items to return for each page. Sending this parameter with the query
|
482
284
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
483
285
|
number of the page to be returned. This requires that paging be turned on
|
484
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
286
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
485
287
|
is deprecated and will be removed in a future version, use is_address_hidden
|
486
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"}],"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
|
487
289
|
number of items to return for each page. Sending this parameter with the query
|
488
290
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
489
291
|
number of the page to be returned. This requires that paging be turned on
|
490
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
292
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/division_events","rel":"division_events","prompt":"BETA:
|
491
293
|
(This endpoint subject to change) Returns a collection associated with a division''s
|
492
294
|
events","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/division_events"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_events/search","data":[{"name":"division_id","value":null},{"name":"id","value":null},{"name":"division_location_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
493
295
|
number of items to return for each page. Sending this parameter with the query
|
494
296
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
495
297
|
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.
|
298
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/division_locations","rel":"division_locations","links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_locations/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
497
299
|
number of items to return for each page. Sending this parameter with the query
|
498
300
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
499
301
|
number of the page to be returned. This requires that paging be turned on
|
500
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
302
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
501
303
|
number of items to return for each page. Sending this parameter with the query
|
502
304
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
503
305
|
number of the page to be returned. This requires that paging be turned on
|
504
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
306
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
505
307
|
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
|
506
308
|
number of items to return for each page. Sending this parameter with the query
|
507
309
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
508
310
|
number of the page to be returned. This requires that paging be turned on
|
509
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
311
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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
|
510
312
|
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
|
511
313
|
a division member by the month of their birthday."},{"name":"page_size","value":null,"prompt":"The
|
512
314
|
number of items to return for each page. Sending this parameter with the query
|
513
315
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
514
316
|
number of the page to be returned. This requires that paging be turned on
|
515
|
-
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":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}},{"collection":{"version":"3.
|
317
|
+
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":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}},{"collection":{"version":"3.207.1","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_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null},{"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
|
516
318
|
number of items to return for each page. Sending this parameter with the query
|
517
319
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
518
320
|
number of the page to be returned. This requires that paging be turned on
|
519
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
321
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/division_team_standings","rel":"division_team_standings","template":{"data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"team_name","value":null},{"name":"team_url","value":null},{"name":"division_name","value":null},{"name":"wins","value":null},{"name":"losses","value":null},{"name":"ties","value":null},{"name":"overtime_losses","value":null},{"name":"standings_points","value":null},{"name":"type","value":"division_team_standing"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_team_standings"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_team_standings/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
520
322
|
number of items to return for each page. Sending this parameter with the query
|
521
323
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
522
324
|
number of the page to be returned. This requires that paging be turned on
|
523
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
325
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/divisions_preferences","rel":"divisions_preferences","prompt":"BETA:
|
524
326
|
(This endpoint subject to change) Returns a collection associated with a division''s
|
525
327
|
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":"team_preferences"}]},"links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/divisions_preferences"}],"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
|
526
328
|
number of items to return for each page. Sending this parameter with the query
|
527
329
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
528
330
|
number of the page to be returned. This requires that paging be turned on
|
529
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
331
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/event_statistics","rel":"event_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/event_statistics"},{"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.207.1","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
|
530
332
|
updating a repeating event, this is a required field. Values are: \"all\"
|
531
333
|
- updates all events in this series, \"future\" - updates this event and all
|
532
334
|
that occur after, \"none\" - only updates a single event."},{"name":"repeating_type_code","value":null,"prompt":"A
|
@@ -543,71 +345,71 @@ http_interactions:
|
|
543
345
|
by also providing the page_size parameter."}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}]},{"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
|
544
346
|
= [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
|
545
347
|
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
|
546
|
-
= [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.
|
348
|
+
= [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.207.1","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"}],"queries":[{"rel":"search","href":"http://localhost:3000/facebook_pages/search","data":[{"name":"page_size","value":null,"prompt":"The
|
547
349
|
number of items to return for each page. Sending this parameter with the query
|
548
350
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
549
351
|
number of the page to be returned. This requires that paging be turned on
|
550
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
352
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/forecasts","rel":"forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forecasts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
551
353
|
number of items to return for each page. Sending this parameter with the query
|
552
354
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
553
355
|
number of the page to be returned. This requires that paging be turned on
|
554
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
356
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
555
357
|
number of items to return for each page. Sending this parameter with the query
|
556
358
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
557
359
|
number of the page to be returned. This requires that paging be turned on
|
558
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
360
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
559
361
|
number of items to return for each page. Sending this parameter with the query
|
560
362
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
561
363
|
number of the page to be returned. This requires that paging be turned on
|
562
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
364
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
563
365
|
number of items to return for each page. Sending this parameter with the query
|
564
366
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
565
367
|
number of the page to be returned. This requires that paging be turned on
|
566
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
368
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/geocoded_locations","rel":"geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/geocoded_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"page_size","value":null,"prompt":"The
|
567
369
|
number of items to return for each page. Sending this parameter with the query
|
568
370
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
569
371
|
number of the page to be returned. This requires that paging be turned on
|
570
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
372
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
571
373
|
number of items to return for each page. Sending this parameter with the query
|
572
374
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
573
375
|
number of the page to be returned. This requires that paging be turned on
|
574
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
376
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/league_registrant_documents","rel":"league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_registrant_documents"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_registrant_documents/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
575
377
|
number of items to return for each page. Sending this parameter with the query
|
576
378
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
577
379
|
number of the page to be returned. This requires that paging be turned on
|
578
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
380
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
579
381
|
number of items to return for each page. Sending this parameter with the query
|
580
382
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
581
383
|
number of the page to be returned. This requires that paging be turned on
|
582
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
384
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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":"page_size","value":null,"prompt":"The
|
583
385
|
number of items to return for each page. Sending this parameter with the query
|
584
386
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
585
387
|
number of the page to be returned. This requires that paging be turned on
|
586
388
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/member_email_addresses/invite","prompt":"BETA:
|
587
|
-
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.
|
389
|
+
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.207.1","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"}],"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
|
588
390
|
number of items to return for each page. Sending this parameter with the query
|
589
391
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
590
392
|
number of the page to be returned. This requires that paging be turned on
|
591
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
393
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
592
394
|
number of items to return for each page. Sending this parameter with the query
|
593
395
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
594
396
|
number of the page to be returned. This requires that paging be turned on
|
595
397
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
|
596
|
-
a member file. This must be a multi-part POST.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.
|
398
|
+
a member file. This must be a multi-part POST.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
597
399
|
number of items to return for each page. Sending this parameter with the query
|
598
400
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
599
401
|
number of the page to be returned. This requires that paging be turned on
|
600
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
402
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
601
403
|
number of items to return for each page. Sending this parameter with the query
|
602
404
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
603
405
|
number of the page to be returned. This requires that paging be turned on
|
604
406
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"transaction","href":"http://localhost:3000/member_payments/transaction","prompt":"Add
|
605
|
-
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.
|
407
|
+
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.207.1","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
|
606
408
|
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
|
607
409
|
number of items to return for each page. Sending this parameter with the query
|
608
410
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
609
411
|
number of the page to be returned. This requires that paging be turned on
|
610
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
412
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/member_statistics","rel":"member_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_statistics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.207.1","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
|
611
413
|
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
|
612
414
|
is deprecated and will be removed in a future version, use is_address_hidden
|
613
415
|
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":"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":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
@@ -622,23 +424,23 @@ http_interactions:
|
|
622
424
|
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
|
623
425
|
source_member_ids (array) and a destination_team_id, source members and related
|
624
426
|
member data will be imported to the destination team. Newly created members
|
625
|
-
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.
|
427
|
+
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.207.1","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_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null},{"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
|
626
428
|
number of items to return for each page. Sending this parameter with the query
|
627
429
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
628
430
|
number of the page to be returned. This requires that paging be turned on
|
629
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
431
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
630
432
|
number of items to return for each page. Sending this parameter with the query
|
631
433
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
632
434
|
number of the page to be returned. This requires that paging be turned on
|
633
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
435
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
634
436
|
number of items to return for each page. Sending this parameter with the query
|
635
437
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
636
438
|
number of the page to be returned. This requires that paging be turned on
|
637
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
439
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
638
440
|
number of items to return for each page. Sending this parameter with the query
|
639
441
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
640
442
|
number of the page to be returned. This requires that paging be turned on
|
641
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
443
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/paypal_currencies","rel":"paypal_currencies","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/paypal_currencies"}],"queries":[{"rel":"search","href":"http://localhost:3000/paypal_currencies/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.207.1","rel":"plans","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/plans"}],"queries":[{"rel":"search","href":"http://localhost:3000/plans/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]},{"rel":"all","href":"http://localhost:3000/plans/all","prompt":"Returns
|
642
444
|
all active and inactive plans"}],"items":[{"href":"http://localhost:3000/plans/14","data":[{"name":"id","value":14},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
643
445
|
is deprecated and will be removed in a future version, use has_team_media
|
644
446
|
instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
|
@@ -681,7 +483,7 @@ http_interactions:
|
|
681
483
|
Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-36"},{"href":"http://localhost:3000/plans/37","data":[{"name":"id","value":37},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
|
682
484
|
is deprecated and will be removed in a future version, use has_team_media
|
683
485
|
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
|
684
|
-
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-37"}]}},{"collection":{"version":"3.
|
486
|
+
Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-37"}]}},{"collection":{"version":"3.207.1","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.207.1","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
|
685
487
|
number of items to return for each page. Sending this parameter with the query
|
686
488
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
687
489
|
number of the page to be returned. This requires that paging be turned on
|
@@ -803,13 +605,13 @@ http_interactions:
|
|
803
605
|
(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
|
804
606
|
(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
|
805
607
|
(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
|
806
|
-
Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.
|
608
|
+
Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.207.1","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
|
807
609
|
number of items to return for each page. Sending this parameter with the query
|
808
610
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
809
611
|
number of the page to be returned. This requires that paging be turned on
|
810
612
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
|
811
613
|
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":"translation
|
812
|
-
missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.
|
614
|
+
missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/sports","rel":"sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sports"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/sports/1","data":[{"name":"id","value":1},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"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/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
|
813
615
|
Time"},{"name":"shootout_abbrev","value":"PK"},{"name":"shootout_label","value":"Penalty
|
814
616
|
Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"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}],"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/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}],"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/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}],"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/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}],"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/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}],"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/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
|
815
617
|
Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
|
@@ -847,7 +649,8 @@ http_interactions:
|
|
847
649
|
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}],"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/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
|
848
650
|
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}],"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/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
|
849
651
|
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}],"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/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}],"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/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}],"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/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
|
850
|
-
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}],"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/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}],"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/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}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-coed.png"}],"rel":"sport-81"}
|
652
|
+
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}],"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/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}],"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/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}],"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/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}],"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/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}],"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/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
|
653
|
+
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}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-pool_and_billiards.png"}],"rel":"sport-84"}]}},{"collection":{"version":"3.207.1","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
|
851
654
|
number of items to return for each page. Sending this parameter with the query
|
852
655
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
853
656
|
number of the page to be returned. This requires that paging be turned on
|
@@ -856,29 +659,29 @@ http_interactions:
|
|
856
659
|
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
|
857
660
|
all statistics and statistic groups from a template of a sport_id to a specified
|
858
661
|
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
|
859
|
-
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.
|
662
|
+
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.207.1","prompt":"Aggregate
|
860
663
|
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
|
861
664
|
number of items to return for each page. Sending this parameter with the query
|
862
665
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
863
666
|
number of the page to be returned. This requires that paging be turned on
|
864
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
667
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"},{"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
|
865
668
|
number of items to return for each page. Sending this parameter with the query
|
866
669
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
867
670
|
number of the page to be returned. This requires that paging be turned on
|
868
671
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"bulk_update_statistic_data","href":"http://localhost:3000/statistic_data/bulk_update","prompt":"translation
|
869
672
|
missing: en.prompts.statistic_data.commands.bulk_update","data":[{"name":"templates","value":null,"prompt":"translation
|
870
673
|
missing: en.prompts.statistic_data.commands.parameters.bulk_update.templates"}]},{"rel":"bulk_delete_statistic_data","href":"http://localhost:3000/statistic_data/bulk_delete","prompt":"translation
|
871
|
-
missing: en.prompts.statistic_data.commands.bulk_delete","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.
|
674
|
+
missing: en.prompts.statistic_data.commands.bulk_delete","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
872
675
|
number of items to return for each page. Sending this parameter with the query
|
873
676
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
874
677
|
number of the page to be returned. This requires that paging be turned on
|
875
678
|
by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_statistic_groups","href":"http://localhost:3000/statistic_groups/reorder","prompt":"reorder
|
876
679
|
the statistic groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
877
|
-
array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.
|
680
|
+
array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
878
681
|
number of items to return for each page. Sending this parameter with the query
|
879
682
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
880
683
|
number of the page to be returned. This requires that paging be turned on
|
881
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
684
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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":"page_size","value":null,"prompt":"The
|
882
685
|
number of items to return for each page. Sending this parameter with the query
|
883
686
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
884
687
|
number of the page to be returned. This requires that paging be turned on
|
@@ -899,11 +702,11 @@ http_interactions:
|
|
899
702
|
missing: en.prompts.team_media.commands.parameters.caption"},{"name":"facebook_page_id","value":null,"prompt":"translation
|
900
703
|
missing: en.prompts.team_media.commands.parameters.facebook_page_id"}]},{"rel":"reorder_team_media","href":"http://localhost:3000/team_media/reorder","prompt":"Reorder
|
901
704
|
the team media based on the sorted_ids provided.","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
902
|
-
array of the ids in the order that they are to be moved to."}]}]}},{"collection":{"version":"3.
|
705
|
+
array of the ids in the order that they are to be moved to."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
903
706
|
number of items to return for each page. Sending this parameter with the query
|
904
707
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
905
708
|
number of the page to be returned. This requires that paging be turned on
|
906
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
709
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
907
710
|
number of items to return for each page. Sending this parameter with the query
|
908
711
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
909
712
|
number of the page to be returned. This requires that paging be turned on
|
@@ -913,14 +716,14 @@ http_interactions:
|
|
913
716
|
missing: en.prompts.team_media_group.commands.facebook_share_team_media_group","data":[{"name":"team_media_group_id","value":null},{"name":"is_suppressed_from_feed","value":null,"prompt":"translation
|
914
717
|
missing: en.prompts.team_media_group.commands.parameters.is_suppressed_from_feed"},{"name":"album_name","value":null,"prompt":"translation
|
915
718
|
missing: en.prompts.team_media_group.commands.parameters.caption"},{"name":"facebook_page_id","value":null,"prompt":"translation
|
916
|
-
missing: en.prompts.team_media_group.commands.parameters.facebook_page_id"}]}]}},{"collection":{"version":"3.
|
719
|
+
missing: en.prompts.team_media_group.commands.parameters.facebook_page_id"}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
917
720
|
number of items to return for each page. Sending this parameter with the query
|
918
721
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
919
722
|
number of the page to be returned. This requires that paging be turned on
|
920
723
|
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
|
921
724
|
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
|
922
725
|
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
|
923
|
-
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.
|
726
|
+
to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.207.1","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
|
924
727
|
time_zone parameter is required when creating a team, but for changing a team''s
|
925
728
|
time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"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":"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_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_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_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
926
729
|
number of items to return for each page. Sending this parameter with the query
|
@@ -933,11 +736,11 @@ http_interactions:
|
|
933
736
|
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
|
934
737
|
team''s time zone. This is currently the only method of updating a team''s
|
935
738
|
time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
|
936
|
-
all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.
|
739
|
+
all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
937
740
|
number of items to return for each page. Sending this parameter with the query
|
938
741
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
939
742
|
number of the page to be returned. This requires that paging be turned on
|
940
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
743
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/teams_preferences","rel":"teams_preferences","template":{"data":[{"name":"age_group","value":null},{"name":"alternate_sport_name","value":null},{"name":"announcement_above_home_photo","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"assignments_show_tab","value":null},{"name":"availabilities_show_tab","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"files_show_tab","value":null,"deprecated":true,"prompt":"files_show_tab
|
941
744
|
is deprecated and will be removed in a future version, use team_media_show_tab
|
942
745
|
instead."},{"name":"team_media_show_tab","value":null},{"name":"gender","value":null},{"name":"global_uniform_away","value":null},{"name":"global_uniform_home","value":null},{"name":"global_use_international_date","value":null},{"name":"global_use_international_time","value":null},{"name":"hide_header","value":null},{"name":"introduction_text","value":null,"deprecated":true,"prompt":"introduction_text
|
943
746
|
is deprecated and has been removed. Continued use of introduction_text is
|
@@ -951,11 +754,11 @@ http_interactions:
|
|
951
754
|
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
|
952
755
|
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
|
953
756
|
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
|
954
|
-
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.
|
757
|
+
a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
955
758
|
number of items to return for each page. Sending this parameter with the query
|
956
759
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
957
760
|
number of the page to be returned. This requires that paging be turned on
|
958
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
761
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/team_statistics","rel":"team_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_statistics"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/time_zones","rel":"time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/time_zones"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/time_zones/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
|
959
762
|
Samoa"},{"name":"iana_name","value":"Pacific/Pago_Pago"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-american-samoa"},{"href":"http://localhost:3000/time_zones/international-date-line-west","data":[{"name":"id","value":"international-date-line-west"},{"name":"type","value":"TimeZone"},{"name":"description","value":"International
|
960
763
|
Date Line West"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-international-date-line-west"},{"href":"http://localhost:3000/time_zones/midway-island","data":[{"name":"id","value":"midway-island"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Midway
|
961
764
|
Island"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-midway-island"},{"href":"http://localhost:3000/time_zones/samoa","data":[{"name":"id","value":"samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samoa"},{"name":"iana_name","value":"Pacific/Apia"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-samoa"},{"href":"http://localhost:3000/time_zones/hawaii","data":[{"name":"id","value":"hawaii"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hawaii"},{"name":"iana_name","value":"Pacific/Honolulu"},{"name":"offset","value":"-10:00"}],"rel":"TimeZone-hawaii"},{"href":"http://localhost:3000/time_zones/alaska","data":[{"name":"id","value":"alaska"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Alaska"},{"name":"iana_name","value":"America/Juneau"},{"name":"offset","value":"-09:00"}],"rel":"TimeZone-alaska"},{"href":"http://localhost:3000/time_zones/pacific-time-us-canada","data":[{"name":"id","value":"pacific-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pacific
|
@@ -982,25 +785,25 @@ http_interactions:
|
|
982
785
|
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/auckland","data":[{"name":"id","value":"auckland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Auckland"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-auckland"},{"href":"http://localhost:3000/time_zones/fiji","data":[{"name":"id","value":"fiji"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Fiji"},{"name":"iana_name","value":"Pacific/Fiji"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-fiji"},{"href":"http://localhost:3000/time_zones/kamchatka","data":[{"name":"id","value":"kamchatka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kamchatka"},{"name":"iana_name","value":"Asia/Kamchatka"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-kamchatka"},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
|
983
786
|
Is."},{"name":"iana_name","value":"Pacific/Majuro"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-marshall-is"},{"href":"http://localhost:3000/time_zones/wellington","data":[{"name":"id","value":"wellington"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Wellington"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-wellington"},{"href":"http://localhost:3000/time_zones/chatham-is","data":[{"name":"id","value":"chatham-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chatham
|
984
787
|
Is."},{"name":"iana_name","value":"Pacific/Chatham"},{"name":"offset","value":"+12:45"}],"rel":"TimeZone-chatham-is"},{"href":"http://localhost:3000/time_zones/nuku-alofa","data":[{"name":"id","value":"nuku-alofa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nuku''alofa"},{"name":"iana_name","value":"Pacific/Tongatapu"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-nuku-alofa"},{"href":"http://localhost:3000/time_zones/tokelau-is","data":[{"name":"id","value":"tokelau-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokelau
|
985
|
-
Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"}]}},{"collection":{"version":"3.
|
788
|
+
Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"}]}},{"collection":{"version":"3.207.1","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
|
986
789
|
number of items to return for each page. Sending this parameter with the query
|
987
790
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
988
791
|
number of the page to be returned. This requires that paging be turned on
|
989
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
792
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","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"}],"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
|
990
793
|
number of items to return for each page. Sending this parameter with the query
|
991
794
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
992
795
|
number of the page to be returned. This requires that paging be turned on
|
993
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
796
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/tsl_metadata","rel":"tsl_metadata","template":{"data":[{"name":"user_id","value":null},{"name":"type","value":"tsl_metadatum"}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_metadata"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null},{"name":"page_size","value":null,"prompt":"The
|
994
797
|
number of items to return for each page. Sending this parameter with the query
|
995
798
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
996
799
|
number of the page to be returned. This requires that paging be turned on
|
997
|
-
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.
|
800
|
+
by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/tsl_chats","rel":"tsl_chats","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_chats"}],"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}]}]}},{"collection":{"version":"3.207.1","href":"http://localhost:3000/tsl_scores","rel":"tsl_scores","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_scores"}],"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.207.1","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},{"name":"facebook_access_token","value":null},{"name":"type","value":"user"}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/users"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
|
998
801
|
number of items to return for each page. Sending this parameter with the query
|
999
802
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
1000
803
|
number of the page to be returned. This requires that paging be turned on
|
1001
804
|
by also providing the page_size parameter."}]}]}}]'
|
1002
805
|
http_version: '1.1'
|
1003
806
|
adapter_metadata:
|
1004
|
-
effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=
|
1005
|
-
recorded_at:
|
807
|
+
effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=78c1368b-15ca-46f4-8bce-ad99f381b4db&hmac_timestamp=1458775791
|
808
|
+
recorded_at: Wed, 23 Mar 2016 23:29:51 GMT
|
1006
809
|
recorded_with: VCR 2.9.3
|