teamsnap_rb 2.4.0 → 2.4.1
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/.github/stale.yml +16 -0
- data/.gitignore +1 -1
- data/.travis.yml +5 -6
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -2
- data/README.md +0 -1
- data/Rakefile +0 -5
- data/lib/teamsnap.rb +5 -1
- data/lib/teamsnap/api.rb +2 -1
- data/lib/teamsnap/auth_middleware.rb +2 -0
- data/lib/teamsnap/response.rb +5 -1
- data/lib/teamsnap/version.rb +1 -1
- data/spec/cassettes/apiv3-init.yml +850 -236
- data/spec/cassettes/teamsnap__api/_run/when_creating/when_successful/can_parse_the_json.yml +73 -0
- data/spec/cassettes/teamsnap__api/_run/when_deleting/when_successful/handles_empty_response_body.yml +38 -0
- data/spec/cassettes/teamsnap__client/_api/Sends_the_proper_information_to_TeamSnap_Api_run.yml +87 -0
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +24 -17
- data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/passes_them_to_the_faraday_client_using_method_missing.yml +24 -17
- data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/correctly_sets_the_ghost_header_flag.yml +846 -232
- data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/won_t_set_feature_headers_without_the_header_variable_present.yml +847 -232
- data/spec/cassettes/teamsnap__collection/_items/returns_all_items_for_a_base_collection.yml +68 -63
- data/spec/cassettes/teamsnap__collection/adds_find_if_search_is_available.yml +44 -27
- data/spec/cassettes/teamsnap__collection/adds_href_to_items.yml +132 -33
- data/spec/cassettes/teamsnap__collection/can_follow_plural_links.yml +421 -136
- data/spec/cassettes/teamsnap__collection/can_follow_singular_links.yml +175 -59
- data/spec/cassettes/teamsnap__collection/can_handle_links_with_no_data.yml +155 -53
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands.yml +132 -33
- data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands_with_multiple_params.yml +75 -35
- data/spec/cassettes/teamsnap__collection/handles_fetching_data_via_queries.yml +44 -27
- data/spec/cassettes/teamsnap__collection/handles_queries_with_no_data.yml +36 -22
- data/spec/cassettes/teamsnap__collection/raises_an_exception_if_find_returns_nothing.yml +36 -22
- 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 +63 -51
- 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 +57 -47
- 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 +49 -42
- data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +77 -53
- data/spec/cassettes/teamsnap__structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +36 -22
- data/spec/cassettes/teamsnap__structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +36 -22
- data/spec/cassettes/teamsnap__structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +24 -17
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_empty_bulk_load.yml +16 -16
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_error_with_bulk_load_without_a_team_id.yml +14 -14
- data/spec/cassettes/teamsnap_rb/_bulk_load/can_use_bulk_load.yml +291 -103
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/accepts_test_file_arg_when_creating_HMAC.yml +82 -2653
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_DELETE_on_the_given_client.yml +67 -2639
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_GET_on_the_given_client.yml +24 -17
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_PATCH_on_the_given_client.yml +67 -2639
- data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_POST_on_the_given_client.yml +67 -2639
- data/spec/cassettes/teamsnap_rb/_run/processes_the_response.yml +93 -65
- data/spec/cassettes/uploading_files/uploads_a_file.yml +130 -31
- data/spec/cassettes/uploading_files/uploads_a_tempfile.yml +130 -31
- data/spec/features/uploading_files_spec.rb +2 -2
- data/spec/spec_helper.rb +0 -13
- data/spec/teamsnap/apiv_spec.rb +49 -1
- data/spec/teamsnap/client_spec.rb +4 -4
- data/spec/teamsnap/collection_spec.rb +5 -5
- data/spec/teamsnap/item_spec.rb +1 -1
- data/spec/teamsnap/structure_spec.rb +2 -2
- data/spec/teamsnap_spec.rb +4 -4
- data/teamsnap_rb.gemspec +5 -5
- metadata +27 -14
@@ -2,15 +2,17 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://localhost:3000/members/search?id=
|
5
|
+
uri: http://localhost:3000/members/search?id=69&hmac_client_id=classic_service&hmac_nonce=6bacd5df-8566-4f18-a9e5-719405e58727&hmac_timestamp=1590177504
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.
|
11
|
+
- Faraday v0.17.3
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- 8807ef109a703e5d6172f2c7b8728fc9b5f53227d73de2b166899959819c9ffd
|
14
|
+
Expect:
|
15
|
+
- ''
|
14
16
|
response:
|
15
17
|
status:
|
16
18
|
code: 200
|
@@ -18,71 +20,170 @@ http_interactions:
|
|
18
20
|
headers:
|
19
21
|
Content-Type:
|
20
22
|
- application/vnd.collection+json
|
21
|
-
Content-Length:
|
22
|
-
- '12308'
|
23
23
|
X-Content-Type-Options:
|
24
24
|
- nosniff
|
25
25
|
ETag:
|
26
|
-
-
|
26
|
+
- W/"a03f55788cfc14f1c0a952c5ee5f7d14"
|
27
27
|
Cache-Control:
|
28
28
|
- max-age=0, private, must-revalidate
|
29
29
|
X-Request-Id:
|
30
|
-
-
|
30
|
+
- b630c56d-760d-4efb-bbe3-a66b16324a63
|
31
31
|
X-Runtime:
|
32
|
-
- '0.
|
33
|
-
|
34
|
-
-
|
35
|
-
|
36
|
-
-
|
32
|
+
- '0.505900'
|
33
|
+
Vary:
|
34
|
+
- Origin
|
35
|
+
Content-Length:
|
36
|
+
- '24340'
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
39
|
+
string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/members","rel":"members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
40
40
|
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
|
41
41
|
is deprecated and will be removed in a future version, use is_address_hidden
|
42
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"
|
42
|
+
instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"source_action","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"member_email_addresses
|
43
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
44
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers","prompt":"member_phone_numbers
|
45
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
46
|
+
is not recommended it will no longer be stored."},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members/search?id=69"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"can_receive_push_notifications","value":null},{"name":"page_size","value":null,"prompt":"The
|
43
47
|
number of items to return for each page. Sending this parameter with the query
|
44
48
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
45
49
|
number of the page to be returned. This requires that paging be turned on
|
46
50
|
by also providing the page_size parameter."}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"personas","href":"http://localhost:3000/members/personas","prompt":"Given
|
47
51
|
a user ID, returns members directly associated with the user as well as members
|
48
|
-
associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"
|
49
|
-
|
50
|
-
|
51
|
-
that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
|
52
|
+
associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"Given
|
53
|
+
a a team_id or division_id, returns all members that are commissioners of
|
54
|
+
the divisions that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
|
52
55
|
a user ID, returns all members associated with user''s active season teams. If
|
53
56
|
include_archived_teams (boolean) parameter is supplied, members associated
|
54
|
-
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}
|
57
|
+
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"Searches
|
58
|
+
the division and subdivision for the members meeting the search criteria.","data":[{"name":"division_id","value":null,"prompt":"Id
|
59
|
+
of the division and descendants to search"},{"name":"is_unassigned","value":null,"prompt":"true/false
|
60
|
+
- For all members in a division that aren''t assigned to a team. Not used
|
61
|
+
if blank."},{"name":"is_activated","value":null,"prompt":"true/false - For
|
62
|
+
all members in a division that have a user. Not used if blank."},{"name":"is_commissioner","value":null,"prompt":"true/false
|
63
|
+
- For all members in a division that are or are not a commissioner. Not used
|
64
|
+
if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
65
|
+
- Find all members in a division that are or are not pending ownership. Not
|
66
|
+
used if blank."},{"name":"page_size","value":null,"prompt":"The number of
|
67
|
+
items to return for each page. Sending this parameter with the query will
|
68
|
+
enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
69
|
+
number of the page to be returned. This requires that paging be turned on
|
70
|
+
by also providing the page_size parameter."}]},{"rel":"advanced_division_search","href":"http://localhost:3000/members/advanced_division_search","prompt":"Searches
|
71
|
+
the division and subdivision for the members meeting the search criteria.
|
72
|
+
Searches using this endpoint accept additional parameters. You can search
|
73
|
+
for equality by formatting the string as ''operator:equals,value:<SEARCH STRING>''.
|
74
|
+
You can also search inquality by using not_equals as ''operator:not_equals,value:<SEARCH
|
75
|
+
STRING>''. You may search for additional parameters by sending them as an
|
76
|
+
array, for instance: ?birthday[]=operator:less_than,value:2016-02-02&birthday[]=operator:greater_than,value:2010-02-02.
|
77
|
+
Other operators are less_than_or_equal and greater_than_or_equal","data":[{"name":"division_id","value":null,"prompt":"Id
|
78
|
+
of the division and descendants to search"},{"name":"id","value":null,"prompt":"Id
|
79
|
+
of the member to search"},{"name":"user_id","value":null,"prompt":"Id of the
|
80
|
+
user to search"},{"name":"is_commissioner","value":null,"prompt":"true/false
|
81
|
+
- For all members in a division that are or are not a commissioner. Not used
|
82
|
+
if blank."},{"name":"birthday","value":null,"prompt":"date - Accepts advanced
|
83
|
+
search operators ''less_than'' and ''greater_than''."},{"name":"team_id","value":null,"prompt":"integer
|
84
|
+
- Find all members in a division with the specified team_id(s)."},{"name":"is_coach","value":null,"prompt":"true/false
|
85
|
+
- Find all members in a division that are or are not a coach. Not used if
|
86
|
+
blank."},{"name":"is_manager","value":null,"prompt":"true/false - Find all
|
87
|
+
members in a division that are or are not a team manager. Not used if blank."},{"name":"is_non_player","value":null,"prompt":"true/false
|
88
|
+
- Find all members in a division that are or are not a players. Not used if
|
89
|
+
blank."},{"name":"is_owner","value":null,"prompt":"true/false - Find all members
|
90
|
+
in a division that are or are not owners. Not used if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
91
|
+
- Find all members in a division that are or are not pending ownership. Not
|
92
|
+
used if blank."},{"name":"gender","value":null,"prompt":"Male/Female - Find
|
93
|
+
all members in a division with the specified gender."},{"name":"first_name","value":null,"prompt":"string
|
94
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"last_name","value":null,"prompt":"string
|
95
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"email","value":null,"prompt":"string
|
96
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"custom_field","value":null,"prompt":"string
|
97
|
+
- Required advanced search parameter of ''id'' that should be the id of the
|
98
|
+
custom field to be searched on. Accepts advanced search operators ''equals'',
|
99
|
+
''contains'' and ''starts_with''."},{"name":"registration_form_id","value":null,"prompt":"string
|
100
|
+
- Find all members in a division with the specified registration_form_id."},{"name":"registration_form_line_item_id","value":null,"prompt":"string
|
101
|
+
- Find all members in a division who have selected the specified registration_form_line_item_id."},{"name":"registration_form_line_item_option_id","value":null,"prompt":"string
|
102
|
+
- Find all members in a division who have selected a given registration_form_line_item_option_id."},{"name":"is_assigned","value":null,"prompt":"true/false
|
103
|
+
- For all members in a division that are assigned to a team. Not used if blank."},{"name":"is_activated","value":null,"prompt":"true/false
|
104
|
+
- For all members in a division that have a user. Not used if blank."},{"name":"checkout_type","value":null,"prompt":"string
|
105
|
+
- Search for a registration checkout type. Valid values are: \"1\" - In Progress,
|
106
|
+
\"2\" - Pay Now, \"3\" - Installment Plan, \"4\" - Pay Offline, \"5\" - No
|
107
|
+
Fees"},{"name":"signup_status","value":null,"prompt":"string - Search for
|
108
|
+
a registration based on it''s signup status. Value values are: \"authorized\"
|
109
|
+
- Authorized, \"refunded\" - Refunded, \"failed\" - Failed, \"active\" - Active,
|
110
|
+
\"canceled\" - Canceled, \"charged_back\" - Charged Back, \"on_checkout\"
|
111
|
+
- On Checkout, \"paid\" - Paid"},{"name":"search_subdivisions","value":null,"prompt":"true/false
|
112
|
+
- Search all the subdivisions of the division provided. True by default."},{"name":"batch_invoice_id","value":null,"prompt":"Id
|
113
|
+
of batch invoice to search"},{"name":"invoice_status","value":null,"prompt":"string
|
114
|
+
- Search for all members based on a selected batch_invoice_id invoice status,
|
115
|
+
valid values are: \"open\", \"submitted\", \"pending\", \"paid\", \"canceled\""},{"name":"pending_assignments","value":null,"prompt":"string
|
116
|
+
- Search pending assignments for members. \"include\", \"exclude\", \"only\".
|
117
|
+
\"exclude\" is the default"},{"name":"page_size","value":null,"prompt":"The
|
118
|
+
number of items to return for each page. Sending this parameter with the query
|
119
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
120
|
+
number of the page to be returned. This requires that paging be turned on
|
121
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"set_commissioner_access","href":"http://localhost:3000/members/set_commissioner_access","data":[{"name":"member_id","value":null},{"name":"division_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
|
55
122
|
source_member_ids (array) and a destination_team_id, source members and related
|
56
123
|
member data will be imported to the destination team. Newly created members
|
57
124
|
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null},{"name":"send_invites","value":null,"prompt":"Whether
|
58
125
|
or not to create and send invitations for each imported member. Valid values
|
59
|
-
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"
|
60
|
-
|
61
|
-
the
|
62
|
-
of the
|
63
|
-
|
64
|
-
|
65
|
-
|
126
|
+
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"bulk_delete","href":"http://localhost:3000/members/bulk_delete","prompt":"Delete
|
127
|
+
one or many members.","data":[{"name":"member_id","value":null,"prompt":"The
|
128
|
+
id of the member to be deleted, this can either be passed as a comma-delimited
|
129
|
+
list of integers or as an array if the post data is JSON."}]},{"rel":"move_member","href":"http://localhost:3000/members/move_member","prompt":"Move
|
130
|
+
one or many members to a new division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
131
|
+
id of the member or members to be moved, this can either be passed as a comma-delimited
|
132
|
+
list of integers or as an array if the post data is JSON."},{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"pending","value":null}]},{"rel":"move_pending_member","href":"http://localhost:3000/members/move_pending_member","prompt":"Move
|
133
|
+
one or many pending members to their division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
134
|
+
id of the pending member or pending members to be moved, this can either be
|
135
|
+
passed as a comma-delimited list of integers or as an array if the post data
|
136
|
+
is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
|
137
|
+
or divisions to determine pending members, this can either be passed as a
|
138
|
+
comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
|
139
|
+
id of the team or teams to determine pending members, this can either be passed
|
140
|
+
as a comma-delimited list of integers or as an array if the post data is JSON."}]},{"rel":"delete_pending_member","href":"http://localhost:3000/members/delete_pending_member","prompt":"Delete
|
141
|
+
one or many pending members from a division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
142
|
+
id of the pending member or pending members to be moved, this can either be
|
143
|
+
passed as a comma-delimited list of integers or as an array if the post data
|
144
|
+
is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
|
145
|
+
or divisions to determine pending members, this can either be passed as a
|
146
|
+
comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
|
147
|
+
id of the team or teams to determine pending members, this can either be passed
|
148
|
+
as a comma-delimited list of integers or as an array if the post data is JSON."}]}],"items":[{"href":"http://localhost:3000/members/69","data":[{"name":"id","value":69,"type":"String"},{"name":"type","value":"member","type":"String"},{"name":"address_city","value":null,"type":"String"},{"name":"address_state","value":null,"type":"String"},{"name":"address_street1","value":null,"type":"String"},{"name":"address_street2","value":null,"type":"String"},{"name":"address_zip","value":null,"type":"String"},{"name":"birthday","value":"","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"Manny","type":"String"},{"name":"gender","value":null,"type":"String"},{"name":"has_facebook_post_scores_enabled","value":false,"type":"Boolean","deprecated":true,"prompt":"has_facebook_post_scores_enabled
|
149
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
150
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
66
151
|
is deprecated and will be removed in a future version, use is_address_hidden
|
67
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
68
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
69
|
-
is deprecated and
|
70
|
-
|
152
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
153
|
+
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null,"type":"Boolean"},{"name":"invitation_code","value":null,"type":"String","deprecated":true,"prompt":"invitation_code
|
154
|
+
is deprecated and will be removed in a future version, use is_invited instead."},{"name":"invitation_declined","value":null,"type":"Boolean","deprecated":true,"prompt":"%{old}
|
155
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":true,"type":"Boolean"},{"name":"is_commissioner","value":false,"type":"Boolean"},{"name":"is_league_owner","value":false,"type":"Boolean"},{"name":"is_pushable","value":false,"type":"Boolean"},{"name":"is_selectable_for_chat","value":false,"type":"Boolean","deprecated":true,"prompt":"is_selectable_for_chat
|
156
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
157
|
+
is not recommended it will no longer be stored."},{"name":"is_shown_unreachable_for_chat_banner","value":true,"type":"Boolean"},{"name":"is_alertable","value":false,"type":"Boolean"},{"name":"is_emailable","value":true,"type":"Boolean"},{"name":"is_invitable","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
158
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
159
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
160
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
161
|
+
it will no longer be stored."},{"name":"is_coach","value":false,"type":"Boolean"},{"name":"is_manager","value":true,"type":"Boolean"},{"name":"is_non_player","value":false,"type":"Boolean"},{"name":"is_owner","value":false,"type":"Boolean"},{"name":"is_ownership_pending","value":null,"type":"Boolean"},{"name":"is_pending","value":false,"type":"Boolean"},{"name":"is_editable","value":true,"type":"Boolean"},{"name":"is_deletable","value":true,"type":"Boolean"},{"name":"jersey_number","value":null,"type":"String"},{"name":"last_logged_in_at","value":null,"type":"DateTime","deprecated":true,"prompt":"last_logged_in_at
|
162
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
163
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Manager","type":"String"},{"name":"position","value":null,"type":"String"},{"name":"pending_team_id","value":null,"type":"String"},{"name":"pending_division_id","value":null,"type":"String"},{"name":"registration_form_id","value":null,"type":"String"},{"name":"team_id","value":1,"type":"String"},{"name":"user_id","value":4,"type":"String","deprecated":true,"prompt":"user_id
|
164
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
165
|
+
it will no longer be stored."},{"name":"person_uuid","value":null,"type":"String"},{"name":"role_uuid","value":null,"type":"String"},{"name":"updated_at","value":"2020-05-22T19:56:14Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:14Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["manny@example.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=69"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=69"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=69"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=69"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=69"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=69"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=69"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=69"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=69"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?team_id=1"},{"rel":"division","href":"http://localhost:3000/divisions/"},{"rel":"invoice_recipients_invoices_aggregates","href":"http://localhost:3000/invoice_recipients_invoices_aggregates/search?member_id=69"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=69"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields/search?team_id=1"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts/search?member_id=69"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=69"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics/search?team_id=1"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents/search?member_id=69"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=69"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=69"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=69","prompt":"member_email_addresses
|
166
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
167
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=69"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=69"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=69"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=69","prompt":"member_phone_numbers
|
168
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
169
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=69"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/69"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=69"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=69"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=69"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=69"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=69"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=69"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=69"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=69"},{"rel":"user","href":"http://localhost:3000/users/4"}],"rel":"member-69"}]}}'
|
71
170
|
http_version: '1.1'
|
72
171
|
adapter_metadata:
|
73
|
-
effective_url: http://localhost:3000/members/search?id=
|
74
|
-
recorded_at:
|
172
|
+
effective_url: http://localhost:3000/members/search?id=69&hmac_client_id=classic_service&hmac_nonce=6bacd5df-8566-4f18-a9e5-719405e58727&hmac_timestamp=1590177504
|
173
|
+
recorded_at: Fri, 22 May 2020 19:58:25 GMT
|
75
174
|
- request:
|
76
175
|
method: get
|
77
|
-
uri: http://localhost:3000/teams/1?hmac_client_id=
|
176
|
+
uri: http://localhost:3000/teams/1?hmac_client_id=classic_service&hmac_nonce=f47d5a91-53b2-43a3-ac4b-1d37d867070b&hmac_timestamp=1590177505
|
78
177
|
body:
|
79
178
|
encoding: US-ASCII
|
80
179
|
string: ''
|
81
180
|
headers:
|
82
181
|
User-Agent:
|
83
|
-
- Faraday v0.
|
182
|
+
- Faraday v0.17.3
|
84
183
|
X-Teamsnap-Hmac:
|
85
|
-
-
|
184
|
+
- ee088446a3d68388482dbf62ad42c1cdaec143887fc312c086492cc03fa1c50b
|
185
|
+
Expect:
|
186
|
+
- ''
|
86
187
|
response:
|
87
188
|
status:
|
88
189
|
code: 200
|
@@ -90,27 +191,25 @@ http_interactions:
|
|
90
191
|
headers:
|
91
192
|
Content-Type:
|
92
193
|
- application/vnd.collection+json
|
93
|
-
Content-Length:
|
94
|
-
- '17326'
|
95
194
|
X-Content-Type-Options:
|
96
195
|
- nosniff
|
97
196
|
ETag:
|
98
|
-
-
|
197
|
+
- W/"8d6c517daf23330b9a706da3f1389faf"
|
99
198
|
Cache-Control:
|
100
199
|
- max-age=0, private, must-revalidate
|
101
200
|
X-Request-Id:
|
102
|
-
-
|
201
|
+
- 36335031-b474-4112-9e53-c9ad1dcd43a9
|
103
202
|
X-Runtime:
|
104
|
-
- '0.
|
105
|
-
|
106
|
-
-
|
107
|
-
|
108
|
-
-
|
203
|
+
- '0.477789'
|
204
|
+
Vary:
|
205
|
+
- Origin
|
206
|
+
Content-Length:
|
207
|
+
- '23094'
|
109
208
|
body:
|
110
209
|
encoding: UTF-8
|
111
|
-
string: '{"collection":{"version":"3.
|
210
|
+
string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/teams","rel":"teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null,"prompt":"The
|
112
211
|
time_zone parameter is required when creating a team, but for changing a team''s
|
113
|
-
time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams/1"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
212
|
+
time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"links":[{"rel":"advertisements","href":"http://localhost:3000/advertisements"},{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"batch_invoices","href":"http://localhost:3000/batch_invoices"},{"rel":"batch_invoices_aggregates","href":"http://localhost:3000/batch_invoices_aggregates"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"sport_positions","href":"http://localhost:3000/sport_positions"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"team_stores","href":"http://localhost:3000/team_stores"},{"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/1"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
|
114
213
|
number of items to return for each page. Sending this parameter with the query
|
115
214
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
116
215
|
number of the page to be returned. This requires that paging be turned on
|
@@ -119,24 +218,41 @@ http_interactions:
|
|
119
218
|
''desc''."}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
|
120
219
|
all teams accessible to current user that have the provided sport_id and have
|
121
220
|
at least one statistic to import","data":[{"name":"sport_id","value":null}]},{"rel":"active_teams","href":"http://localhost:3000/teams/active","prompt":"Finds
|
122
|
-
all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null}
|
221
|
+
all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null},{"name":"division_id","value":null}]},{"rel":"division_search","href":"http://localhost:3000/teams/division_search","prompt":"Search
|
222
|
+
the teams on the division_id and its descendants or a commissioner''s user_id.","data":[{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"is_active","value":null},{"name":"is_commissioner","value":null},{"name":"page_size","value":null,"prompt":"The
|
223
|
+
number of items to return for each page. Sending this parameter with the query
|
224
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
225
|
+
number of the page to be returned. This requires that paging be turned on
|
226
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
|
123
227
|
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
|
124
228
|
team''s time zone. This is currently the only method of updating a team''s
|
125
|
-
time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null
|
229
|
+
time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null,"deprecated":true,"prompt":"%{old}
|
230
|
+
is deprecated and will be removed in a future version, use %{new} instead."}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
|
126
231
|
all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]},{"rel":"invite_team_owners","href":"http://localhost:3000/teams/invite_team_owners","prompt":"Beta:
|
127
232
|
(This endpoint subject to change) Allow commissioners to send invitations
|
128
233
|
to all owners on active teams in the division.","data":[{"name":"id","value":null}]},{"rel":"change_owner","href":"http://localhost:3000/teams/change_owner","prompt":"Beta:
|
129
234
|
(This endpoint subject to change) Allow commissioners to change the owner
|
130
|
-
of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
235
|
+
of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"toggle_team_visibility_on_dashboard","href":"http://localhost:3000/teams/toggle_team_visibility_on_dashboard","prompt":"Toggles
|
236
|
+
the visibility of teams on the list of active teams, per user. Requires a
|
237
|
+
single id or a comma separated list of ''team_id''s","data":[{"name":"team_ids","value":null}]},{"rel":"send_upsell_message_from_owner","href":"http://localhost:3000/teams/send_upsell_message_from_owner","prompt":"Send
|
238
|
+
an upsell email to the team owner.","data":[{"name":"team_id","value":null},{"name":"feature","value":null}]},{"rel":"send_upsell_message_from_contact","href":"http://localhost:3000/teams/send_upsell_message_from_contact","prompt":"Send
|
239
|
+
an upsell email to the team owner from a contact.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"feature","value":null}]},{"rel":"update_team_plan","href":"http://localhost:3000/teams/update_team_plan","prompt":"Update
|
240
|
+
team''s plan. Requires a single id or a comma separated list of ''team_id''s
|
241
|
+
and a plan_id.","data":[{"name":"team_ids","value":null},{"name":"plan_id","value":null}]},{"rel":"apply_promotion","href":"http://localhost:3000/teams/apply_promotion","prompt":"Apply
|
242
|
+
a promotion to a team. Requires a single id or a comma separated list of ''team_id''s,
|
243
|
+
promotion_name, promotion_length and a plan_id.","data":[{"name":"team_ids","value":null},{"name":"promotion_name","value":null},{"name":"promotion_length","value":null},{"name":"plan_id","value":null}]},{"rel":"enable_fundraising","href":"http://localhost:3000/teams/enable_fundraising","prompt":"Enable
|
244
|
+
fundraising for a team. Requires a single team_id and goal_cents as the fundraising
|
245
|
+
goal.","data":[{"name":"team_id","value":null},{"name":"goal_cents","value":null}]}],"items":[{"href":"http://localhost:3000/teams/1","data":[{"name":"id","value":1,"type":"String"},{"name":"type","value":"team","type":"String"},{"name":"active_season_team_id","value":null,"type":"String"},{"name":"division_name","value":null,"type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"division_root_id","value":null,"type":"Integer"},{"name":"is_archived_season","value":false,"type":"Boolean"},{"name":"is_hidden_on_dashboard","value":false,"type":"Boolean"},{"name":"is_retired","value":false,"type":"Boolean"},{"name":"league_name","value":null,"type":"String"},{"name":"league_url","value":null,"type":"String"},{"name":"is_in_league","value":false,"type":"Boolean"},{"name":"location_country","value":"United
|
246
|
+
States","type":"String"},{"name":"location_postal_code","value":"80951","type":"String"},{"name":"location_latitude","value":null,"type":"String"},{"name":"location_longitude","value":null,"type":"String"},{"name":"location_state","value":null,"type":"String"},{"name":"name","value":"Base
|
247
|
+
Team","type":"String"},{"name":"non_player_member_count","value":1,"type":"Integer"},{"name":"plan_id","value":14,"type":"String"},{"name":"player_member_count","value":12,"type":"Integer"},{"name":"billed_at","value":"2020-05-22T00:00:00Z","type":"DateTime"},{"name":"season_name","value":null,"type":"String"},{"name":"sport_id","value":1,"type":"String"},{"name":"time_zone","value":"Mountain
|
248
|
+
Time (US & Canada)","type":"String"},{"name":"time_zone_description","value":"Mountain
|
249
|
+
Time (US & Canada)","type":"String"},{"name":"time_zone_iana_name","value":"America/Denver","type":"String"},{"name":"time_zone_offset","value":"-07:00","type":"String"},{"name":"active_payment_provider","value":"offline","type":"String"},{"name":"default_payment_provider","value":"stripe","type":"String"},{"name":"updated_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:05Z","type":"DateTime"},{"name":"has_reached_roster_limit","value":false,"type":"Boolean","deprecated":true,"prompt":"has_reached_roster_limit
|
250
|
+
is deprecated and will be removed in a future version, use has_reached_member_limit
|
251
|
+
instead."},{"name":"has_reached_member_limit","value":false,"type":"Boolean"},{"name":"roster_limit","value":15,"type":"Boolean","deprecated":true,"prompt":"roster_limit
|
252
|
+
is deprecated and will be removed in a future version, use member_limit instead."},{"name":"member_limit","value":15,"type":"Integer"},{"name":"has_exportable_media","value":false,"type":"Boolean"},{"name":"can_export_media","value":false,"type":"Boolean"},{"name":"last_accessed_at","value":null,"type":"DateTime"},{"name":"media_storage_used","value":0,"type":"Integer"},{"name":"humanized_media_storage_used","value":"0
|
253
|
+
B","type":"String"},{"name":"is_game_day","value":false,"type":"Boolean"},{"name":"is_gateway_required_for_sms","value":false,"type":"Boolean"},{"name":"has_plaay_video","value":false,"type":"Boolean"}],"links":[{"rel":"advertisements","href":"http://localhost:3000/advertisements/search?team_id=1"},{"rel":"assignments","href":"http://localhost:3000/assignments/search?team_id=1"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?team_id=1"},{"rel":"availabilities_csv_export","href":"http://localhost:3000/exports/availabilities_csv?hs=YszGJFFtdkxT%252Ba08BS5xyp1dHMOjVVvQPmlGdCebDpafs9qC6iM2Wgap55%252FDtoxV"},{"rel":"batch_invoices","href":"http://localhost:3000/batch_invoices/search?team_id=1"},{"rel":"batch_invoices_aggregates","href":"http://localhost:3000/batch_invoices_aggregates/search?team_id=1"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?team_id=1"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?team_id=1"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?team_id=1"},{"rel":"calendar_http","href":"http://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/32322520-7e94-0138-2c42-095d1336e8e6.ics"},{"rel":"calendar_http_games_only","href":"http://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/filter/games/32322520-7e94-0138-2c42-095d1336e8e6.ics"},{"rel":"calendar_webcal","href":"webcal://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/32322520-7e94-0138-2c42-095d1336e8e6.ics"},{"rel":"calendar_webcal_games_only","href":"webcal://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/filter/games/32322520-7e94-0138-2c42-095d1336e8e6.ics"},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners?team_id=1"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?team_id=1"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?team_id=1"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?team_id=1"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?team_id=1"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?team_id=1"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses/search?team_id=1"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers/search?team_id=1"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts/search?team_id=1"},{"rel":"division_locations","href":"http://localhost:3000/division_locations/search?team_id=1"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses/search?team_id=1"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers/search?team_id=1"},{"rel":"division_members","href":"http://localhost:3000/division_members/search?team_id=1"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences/search?team_id=1"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings/search?team_id=1"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts/search?team_id=1"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?team_id=1"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics/search?team_id=1"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics/search?team_id=1"},{"rel":"events","href":"http://localhost:3000/events/search?team_id=1"},{"rel":"events_csv_export","href":"http://localhost:3000/exports/events_csv?hs=YszGJFFtdkxT%252Ba08BS5xyp1dHMOjVVvQPmlGdCebDpafs9qC6iM2Wgap55%252FDtoxV"},{"rel":"events_overview","href":"http://localhost:3000/events/overview?team_id=1"},{"rel":"invoices_aggregates","href":"http://localhost:3000/invoices_aggregates/search?team_id=1"},{"rel":"invoice_recipients_invoices_aggregates","href":"http://localhost:3000/invoice_recipients_invoices_aggregates/search?team_id=1"},{"rel":"granted_wepay_account","href":"http://localhost:3000/wepay_accounts/search?is_granted=true&team_id=1"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?team_id=1"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields/search?team_id=1"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents/search?member_id=1"},{"rel":"locations","href":"http://localhost:3000/locations/search?team_id=1"},{"rel":"managers","href":"http://localhost:3000/members/managers?team_id=1"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?team_id=1"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?team_id=1"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?team_id=1"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?team_id=1"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?team_id=1"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?team_id=1"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?team_id=1"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?team_id=1"},{"rel":"members","href":"http://localhost:3000/members/search?team_id=1"},{"rel":"members_csv_export","href":"http://localhost:3000/exports/members_csv?hs=YszGJFFtdkxT%252Ba08BS5xyp1dHMOjVVvQPmlGdCebDpafs9qC6iM2Wgap55%252FDtoxV"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences/search?team_id=1"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?team_id=1"},{"rel":"messages","href":"http://localhost:3000/messages/search?team_id=1"},{"rel":"messaging_permissions","href":"http://localhost:3000/messaging_permissions?team_id=1"},{"rel":"opponents","href":"http://localhost:3000/opponents/search?team_id=1"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results/search?team_id=1"},{"rel":"owner","href":"http://localhost:3000/members/owner?team_id=1"},{"rel":"partners_preferences_flip_give","href":"http://localhost:3000/partners_preferences/search?partner_id=36&team_id=1"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes/search?team_id=1"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies/search?team_id=1"},{"rel":"plan","href":"http://localhost:3000/plans/14"},{"rel":"sponsors","href":"http://localhost:3000/sponsors/search?team_id=1"},{"rel":"sport","href":"http://localhost:3000/sports/1"},{"rel":"sport_positions","href":"http://localhost:3000/sport_positions/search?sport_id=1"},{"rel":"statistics","href":"http://localhost:3000/statistics/search?team_id=1"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates/search?team_id=1"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?team_id=1"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups/search?team_id=1"},{"rel":"stripe_accounts","href":"http://localhost:3000/stripe_accounts/search?team_id=1"},{"rel":"team_fees","href":"http://localhost:3000/team_fees/search?team_id=1"},{"rel":"team_logo_photo_file","href":"http://localhost:3000/photo_files/sport_logo/1-1590177362"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?team_id=1"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?team_id=1"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups/search?team_id=1"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences/1"},{"rel":"team_photos","href":"http://localhost:3000/team_photos/search"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences/1"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites/1"},{"rel":"team_results","href":"http://localhost:3000/teams_results/1"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics/search?team_id=1"},{"rel":"team_stores","href":"http://localhost:3000/team_stores/search?team_id=1"},{"rel":"team_store","href":"https://team-store.pod-hashrocket.teamsnap.com/teams/1/store"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?team_id=1"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items/search?team_id=1"},{"rel":"team_chat","href":"https://live-dev-1-1.firebaseio.com"},{"rel":"wepay_accounts","href":"http://localhost:3000/wepay_accounts/search?team_id=1"}],"rel":"team-1"}]}}'
|
138
254
|
http_version: '1.1'
|
139
255
|
adapter_metadata:
|
140
|
-
effective_url: http://localhost:3000/teams/1?hmac_client_id=
|
141
|
-
recorded_at:
|
142
|
-
recorded_with: VCR
|
256
|
+
effective_url: http://localhost:3000/teams/1?hmac_client_id=classic_service&hmac_nonce=f47d5a91-53b2-43a3-ac4b-1d37d867070b&hmac_timestamp=1590177505
|
257
|
+
recorded_at: Fri, 22 May 2020 19:58:25 GMT
|
258
|
+
recorded_with: VCR 5.1.0
|
@@ -2,15 +2,17 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://localhost:3000/members/search?id=1&hmac_client_id=
|
5
|
+
uri: http://localhost:3000/members/search?id=1&hmac_client_id=classic_service&hmac_nonce=95617915-3bba-420d-b3c4-1ecf992cabef&hmac_timestamp=1590177506
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.
|
11
|
+
- Faraday v0.17.3
|
12
12
|
X-Teamsnap-Hmac:
|
13
|
-
-
|
13
|
+
- 5ddd25ae69661ecc6cde34b09870b5ae29368eaeb8f7c6f049adab4ae2b83f64
|
14
|
+
Expect:
|
15
|
+
- ''
|
14
16
|
response:
|
15
17
|
status:
|
16
18
|
code: 200
|
@@ -18,71 +20,170 @@ http_interactions:
|
|
18
20
|
headers:
|
19
21
|
Content-Type:
|
20
22
|
- application/vnd.collection+json
|
21
|
-
Content-Length:
|
22
|
-
- '12234'
|
23
23
|
X-Content-Type-Options:
|
24
24
|
- nosniff
|
25
25
|
ETag:
|
26
|
-
-
|
26
|
+
- W/"506ead68dce306c28291ed10c354d235"
|
27
27
|
Cache-Control:
|
28
28
|
- max-age=0, private, must-revalidate
|
29
29
|
X-Request-Id:
|
30
|
-
-
|
30
|
+
- 650bcb68-d69b-456f-930b-7de1abd9a0f8
|
31
31
|
X-Runtime:
|
32
|
-
- '0.
|
33
|
-
|
34
|
-
-
|
35
|
-
|
36
|
-
-
|
32
|
+
- '0.581696'
|
33
|
+
Vary:
|
34
|
+
- Origin
|
35
|
+
Content-Length:
|
36
|
+
- '24259'
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
39
|
+
string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/members","rel":"members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
40
40
|
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
|
41
41
|
is deprecated and will be removed in a future version, use is_address_hidden
|
42
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"
|
42
|
+
instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"source_action","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"member_email_addresses
|
43
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
44
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers","prompt":"member_phone_numbers
|
45
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
46
|
+
is not recommended it will no longer be stored."},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members/search?id=1"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"can_receive_push_notifications","value":null},{"name":"page_size","value":null,"prompt":"The
|
43
47
|
number of items to return for each page. Sending this parameter with the query
|
44
48
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
45
49
|
number of the page to be returned. This requires that paging be turned on
|
46
50
|
by also providing the page_size parameter."}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"personas","href":"http://localhost:3000/members/personas","prompt":"Given
|
47
51
|
a user ID, returns members directly associated with the user as well as members
|
48
|
-
associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"
|
49
|
-
|
50
|
-
|
51
|
-
that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
|
52
|
+
associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"Given
|
53
|
+
a a team_id or division_id, returns all members that are commissioners of
|
54
|
+
the divisions that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
|
52
55
|
a user ID, returns all members associated with user''s active season teams. If
|
53
56
|
include_archived_teams (boolean) parameter is supplied, members associated
|
54
|
-
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}
|
57
|
+
with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"Searches
|
58
|
+
the division and subdivision for the members meeting the search criteria.","data":[{"name":"division_id","value":null,"prompt":"Id
|
59
|
+
of the division and descendants to search"},{"name":"is_unassigned","value":null,"prompt":"true/false
|
60
|
+
- For all members in a division that aren''t assigned to a team. Not used
|
61
|
+
if blank."},{"name":"is_activated","value":null,"prompt":"true/false - For
|
62
|
+
all members in a division that have a user. Not used if blank."},{"name":"is_commissioner","value":null,"prompt":"true/false
|
63
|
+
- For all members in a division that are or are not a commissioner. Not used
|
64
|
+
if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
65
|
+
- Find all members in a division that are or are not pending ownership. Not
|
66
|
+
used if blank."},{"name":"page_size","value":null,"prompt":"The number of
|
67
|
+
items to return for each page. Sending this parameter with the query will
|
68
|
+
enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
69
|
+
number of the page to be returned. This requires that paging be turned on
|
70
|
+
by also providing the page_size parameter."}]},{"rel":"advanced_division_search","href":"http://localhost:3000/members/advanced_division_search","prompt":"Searches
|
71
|
+
the division and subdivision for the members meeting the search criteria.
|
72
|
+
Searches using this endpoint accept additional parameters. You can search
|
73
|
+
for equality by formatting the string as ''operator:equals,value:<SEARCH STRING>''.
|
74
|
+
You can also search inquality by using not_equals as ''operator:not_equals,value:<SEARCH
|
75
|
+
STRING>''. You may search for additional parameters by sending them as an
|
76
|
+
array, for instance: ?birthday[]=operator:less_than,value:2016-02-02&birthday[]=operator:greater_than,value:2010-02-02.
|
77
|
+
Other operators are less_than_or_equal and greater_than_or_equal","data":[{"name":"division_id","value":null,"prompt":"Id
|
78
|
+
of the division and descendants to search"},{"name":"id","value":null,"prompt":"Id
|
79
|
+
of the member to search"},{"name":"user_id","value":null,"prompt":"Id of the
|
80
|
+
user to search"},{"name":"is_commissioner","value":null,"prompt":"true/false
|
81
|
+
- For all members in a division that are or are not a commissioner. Not used
|
82
|
+
if blank."},{"name":"birthday","value":null,"prompt":"date - Accepts advanced
|
83
|
+
search operators ''less_than'' and ''greater_than''."},{"name":"team_id","value":null,"prompt":"integer
|
84
|
+
- Find all members in a division with the specified team_id(s)."},{"name":"is_coach","value":null,"prompt":"true/false
|
85
|
+
- Find all members in a division that are or are not a coach. Not used if
|
86
|
+
blank."},{"name":"is_manager","value":null,"prompt":"true/false - Find all
|
87
|
+
members in a division that are or are not a team manager. Not used if blank."},{"name":"is_non_player","value":null,"prompt":"true/false
|
88
|
+
- Find all members in a division that are or are not a players. Not used if
|
89
|
+
blank."},{"name":"is_owner","value":null,"prompt":"true/false - Find all members
|
90
|
+
in a division that are or are not owners. Not used if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
|
91
|
+
- Find all members in a division that are or are not pending ownership. Not
|
92
|
+
used if blank."},{"name":"gender","value":null,"prompt":"Male/Female - Find
|
93
|
+
all members in a division with the specified gender."},{"name":"first_name","value":null,"prompt":"string
|
94
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"last_name","value":null,"prompt":"string
|
95
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"email","value":null,"prompt":"string
|
96
|
+
- Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"custom_field","value":null,"prompt":"string
|
97
|
+
- Required advanced search parameter of ''id'' that should be the id of the
|
98
|
+
custom field to be searched on. Accepts advanced search operators ''equals'',
|
99
|
+
''contains'' and ''starts_with''."},{"name":"registration_form_id","value":null,"prompt":"string
|
100
|
+
- Find all members in a division with the specified registration_form_id."},{"name":"registration_form_line_item_id","value":null,"prompt":"string
|
101
|
+
- Find all members in a division who have selected the specified registration_form_line_item_id."},{"name":"registration_form_line_item_option_id","value":null,"prompt":"string
|
102
|
+
- Find all members in a division who have selected a given registration_form_line_item_option_id."},{"name":"is_assigned","value":null,"prompt":"true/false
|
103
|
+
- For all members in a division that are assigned to a team. Not used if blank."},{"name":"is_activated","value":null,"prompt":"true/false
|
104
|
+
- For all members in a division that have a user. Not used if blank."},{"name":"checkout_type","value":null,"prompt":"string
|
105
|
+
- Search for a registration checkout type. Valid values are: \"1\" - In Progress,
|
106
|
+
\"2\" - Pay Now, \"3\" - Installment Plan, \"4\" - Pay Offline, \"5\" - No
|
107
|
+
Fees"},{"name":"signup_status","value":null,"prompt":"string - Search for
|
108
|
+
a registration based on it''s signup status. Value values are: \"authorized\"
|
109
|
+
- Authorized, \"refunded\" - Refunded, \"failed\" - Failed, \"active\" - Active,
|
110
|
+
\"canceled\" - Canceled, \"charged_back\" - Charged Back, \"on_checkout\"
|
111
|
+
- On Checkout, \"paid\" - Paid"},{"name":"search_subdivisions","value":null,"prompt":"true/false
|
112
|
+
- Search all the subdivisions of the division provided. True by default."},{"name":"batch_invoice_id","value":null,"prompt":"Id
|
113
|
+
of batch invoice to search"},{"name":"invoice_status","value":null,"prompt":"string
|
114
|
+
- Search for all members based on a selected batch_invoice_id invoice status,
|
115
|
+
valid values are: \"open\", \"submitted\", \"pending\", \"paid\", \"canceled\""},{"name":"pending_assignments","value":null,"prompt":"string
|
116
|
+
- Search pending assignments for members. \"include\", \"exclude\", \"only\".
|
117
|
+
\"exclude\" is the default"},{"name":"page_size","value":null,"prompt":"The
|
118
|
+
number of items to return for each page. Sending this parameter with the query
|
119
|
+
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
120
|
+
number of the page to be returned. This requires that paging be turned on
|
121
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"set_commissioner_access","href":"http://localhost:3000/members/set_commissioner_access","data":[{"name":"member_id","value":null},{"name":"division_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
|
55
122
|
source_member_ids (array) and a destination_team_id, source members and related
|
56
123
|
member data will be imported to the destination team. Newly created members
|
57
124
|
will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null},{"name":"send_invites","value":null,"prompt":"Whether
|
58
125
|
or not to create and send invitations for each imported member. Valid values
|
59
|
-
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"
|
60
|
-
|
61
|
-
the
|
62
|
-
of the
|
63
|
-
|
64
|
-
|
65
|
-
|
126
|
+
are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"bulk_delete","href":"http://localhost:3000/members/bulk_delete","prompt":"Delete
|
127
|
+
one or many members.","data":[{"name":"member_id","value":null,"prompt":"The
|
128
|
+
id of the member to be deleted, this can either be passed as a comma-delimited
|
129
|
+
list of integers or as an array if the post data is JSON."}]},{"rel":"move_member","href":"http://localhost:3000/members/move_member","prompt":"Move
|
130
|
+
one or many members to a new division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
131
|
+
id of the member or members to be moved, this can either be passed as a comma-delimited
|
132
|
+
list of integers or as an array if the post data is JSON."},{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"pending","value":null}]},{"rel":"move_pending_member","href":"http://localhost:3000/members/move_pending_member","prompt":"Move
|
133
|
+
one or many pending members to their division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
134
|
+
id of the pending member or pending members to be moved, this can either be
|
135
|
+
passed as a comma-delimited list of integers or as an array if the post data
|
136
|
+
is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
|
137
|
+
or divisions to determine pending members, this can either be passed as a
|
138
|
+
comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
|
139
|
+
id of the team or teams to determine pending members, this can either be passed
|
140
|
+
as a comma-delimited list of integers or as an array if the post data is JSON."}]},{"rel":"delete_pending_member","href":"http://localhost:3000/members/delete_pending_member","prompt":"Delete
|
141
|
+
one or many pending members from a division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
|
142
|
+
id of the pending member or pending members to be moved, this can either be
|
143
|
+
passed as a comma-delimited list of integers or as an array if the post data
|
144
|
+
is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
|
145
|
+
or divisions to determine pending members, this can either be passed as a
|
146
|
+
comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
|
147
|
+
id of the team or teams to determine pending members, this can either be passed
|
148
|
+
as a comma-delimited list of integers or as an array if the post data is JSON."}]}],"items":[{"href":"http://localhost:3000/members/1","data":[{"name":"id","value":1,"type":"String"},{"name":"type","value":"member","type":"String"},{"name":"address_city","value":null,"type":"String"},{"name":"address_state","value":null,"type":"String"},{"name":"address_street1","value":null,"type":"String"},{"name":"address_street2","value":null,"type":"String"},{"name":"address_zip","value":null,"type":"String"},{"name":"birthday","value":"","type":"String"},{"name":"division_id","value":3,"type":"String"},{"name":"first_name","value":"Deion","type":"String"},{"name":"gender","value":null,"type":"String"},{"name":"has_facebook_post_scores_enabled","value":false,"type":"Boolean","deprecated":true,"prompt":"has_facebook_post_scores_enabled
|
149
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
150
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
66
151
|
is deprecated and will be removed in a future version, use is_address_hidden
|
67
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
68
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
69
|
-
is deprecated and
|
70
|
-
|
152
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
153
|
+
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null,"type":"Boolean"},{"name":"invitation_code","value":null,"type":"String","deprecated":true,"prompt":"invitation_code
|
154
|
+
is deprecated and will be removed in a future version, use is_invited instead."},{"name":"invitation_declined","value":null,"type":"Boolean","deprecated":true,"prompt":"%{old}
|
155
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":true,"type":"Boolean"},{"name":"is_commissioner","value":false,"type":"Boolean"},{"name":"is_league_owner","value":false,"type":"Boolean"},{"name":"is_pushable","value":false,"type":"Boolean"},{"name":"is_selectable_for_chat","value":false,"type":"Boolean","deprecated":true,"prompt":"is_selectable_for_chat
|
156
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
157
|
+
is not recommended it will no longer be stored."},{"name":"is_shown_unreachable_for_chat_banner","value":true,"type":"Boolean"},{"name":"is_alertable","value":false,"type":"Boolean"},{"name":"is_emailable","value":false,"type":"Boolean"},{"name":"is_invitable","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
158
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
159
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
160
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
161
|
+
it will no longer be stored."},{"name":"is_coach","value":false,"type":"Boolean"},{"name":"is_manager","value":false,"type":"Boolean"},{"name":"is_non_player","value":false,"type":"Boolean"},{"name":"is_owner","value":false,"type":"Boolean"},{"name":"is_ownership_pending","value":null,"type":"Boolean"},{"name":"is_pending","value":false,"type":"Boolean"},{"name":"is_editable","value":true,"type":"Boolean"},{"name":"is_deletable","value":true,"type":"Boolean"},{"name":"jersey_number","value":null,"type":"String"},{"name":"last_logged_in_at","value":null,"type":"DateTime","deprecated":true,"prompt":"last_logged_in_at
|
162
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
163
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Sanders","type":"String"},{"name":"position","value":null,"type":"String"},{"name":"pending_team_id","value":null,"type":"String"},{"name":"pending_division_id","value":null,"type":"String"},{"name":"registration_form_id","value":5,"type":"String"},{"name":"team_id","value":null,"type":"String"},{"name":"user_id","value":7,"type":"String","deprecated":true,"prompt":"user_id
|
164
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
165
|
+
it will no longer be stored."},{"name":"person_uuid","value":null,"type":"String"},{"name":"role_uuid","value":null,"type":"String"},{"name":"updated_at","value":"2020-05-22T19:56:08Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:08Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":[],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=1"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=1"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=1"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=1"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=1"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=1"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=1"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=1"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=1"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?"},{"rel":"division","href":"http://localhost:3000/divisions/3"},{"rel":"invoice_recipients_invoices_aggregates","href":"http://localhost:3000/invoice_recipients_invoices_aggregates/search?member_id=1"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=1"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields/search?"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts/search?member_id=1"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=1"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics/search?"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents/search?member_id=1"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=1"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=1"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=1","prompt":"member_email_addresses
|
166
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
167
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=1"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=1"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=1"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=1","prompt":"member_phone_numbers
|
168
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
169
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=1"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/1"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=1"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=1"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=1"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=1"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/5"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=1"},{"rel":"team","href":"http://localhost:3000/teams/"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=1"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=1"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=1"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-1"}]}}'
|
71
170
|
http_version: '1.1'
|
72
171
|
adapter_metadata:
|
73
|
-
effective_url: http://localhost:3000/members/search?id=1&hmac_client_id=
|
74
|
-
recorded_at:
|
172
|
+
effective_url: http://localhost:3000/members/search?id=1&hmac_client_id=classic_service&hmac_nonce=95617915-3bba-420d-b3c4-1ecf992cabef&hmac_timestamp=1590177506
|
173
|
+
recorded_at: Fri, 22 May 2020 19:58:26 GMT
|
75
174
|
- request:
|
76
175
|
method: get
|
77
|
-
uri: http://localhost:3000/assignments/search?member_id=1&hmac_client_id=
|
176
|
+
uri: http://localhost:3000/assignments/search?member_id=1&hmac_client_id=classic_service&hmac_nonce=dc9efc5b-3087-49f9-ad97-561e68ed8528&hmac_timestamp=1590177506
|
78
177
|
body:
|
79
178
|
encoding: US-ASCII
|
80
179
|
string: ''
|
81
180
|
headers:
|
82
181
|
User-Agent:
|
83
|
-
- Faraday v0.
|
182
|
+
- Faraday v0.17.3
|
84
183
|
X-Teamsnap-Hmac:
|
85
|
-
-
|
184
|
+
- 96365a013eabd1ba4efcb60cd1ee8b785d91f29fbe92b02a5763f85c49b2181f
|
185
|
+
Expect:
|
186
|
+
- ''
|
86
187
|
response:
|
87
188
|
status:
|
88
189
|
code: 200
|
@@ -90,36 +191,37 @@ http_interactions:
|
|
90
191
|
headers:
|
91
192
|
Content-Type:
|
92
193
|
- application/vnd.collection+json
|
93
|
-
Content-Length:
|
94
|
-
- '1863'
|
95
194
|
X-Content-Type-Options:
|
96
195
|
- nosniff
|
97
196
|
ETag:
|
98
|
-
-
|
197
|
+
- W/"5e418e7e88fcdb75e9f3a67de47f5bc5"
|
99
198
|
Cache-Control:
|
100
199
|
- max-age=0, private, must-revalidate
|
101
200
|
X-Request-Id:
|
102
|
-
-
|
201
|
+
- cbcceda5-9651-4756-9544-135384fe156b
|
103
202
|
X-Runtime:
|
104
|
-
- '0.
|
105
|
-
|
106
|
-
-
|
107
|
-
|
108
|
-
-
|
203
|
+
- '0.556365'
|
204
|
+
Vary:
|
205
|
+
- Origin
|
206
|
+
Content-Length:
|
207
|
+
- '2715'
|
109
208
|
body:
|
110
209
|
encoding: UTF-8
|
111
|
-
string: '{"collection":{"version":"3.
|
210
|
+
string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/assignments","rel":"assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"create_as_member_id","value":null},{"name":"member_id","value":null,"deprecated":true,"prompt":"member_id
|
112
211
|
is deprecated and has been removed. Continued use of member_id is not recommended
|
113
|
-
it will no longer be stored."},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments/search?member_id=1"}],"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
|
212
|
+
it will no longer be stored."},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments/search?member_id=1"}],"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":"teamsnap_plus","value":null},{"name":"page_size","value":null,"prompt":"The
|
114
213
|
number of items to return for each page. Sending this parameter with the query
|
115
214
|
will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
|
116
215
|
number of the page to be returned. This requires that paging be turned on
|
117
|
-
by also providing the page_size parameter."}]}],"commands":[{"rel":"
|
118
|
-
|
119
|
-
|
120
|
-
|
216
|
+
by also providing the page_size parameter."}]}],"commands":[{"rel":"create_bulk_assignments","href":"http://localhost:3000/assignments/create_bulk_assignments","prompt":"aaa","data":[{"name":"event_set","value":null,"prompt":"A
|
217
|
+
comma-delimited string of keywords and/or event_ids. Keywords include ''future_events'',
|
218
|
+
''future_games'', and ''future_games_and_events''"},{"name":"create_as_member_id","value":null,"prompt":"aaa"},{"name":"team_id","value":null,"prompt":"aaa"},{"name":"description","value":null,"prompt":"aaa"},{"name":"member_id","value":null,"prompt":"aaa"}]},{"rel":"send_assignment_emails","href":"http://localhost:3000/assignments/send_assignment_emails","prompt":"Notifies
|
219
|
+
all members on the team via email regarding upcoming event assignments.","data":[{"name":"event_ids","value":null,"prompt":"A
|
220
|
+
comma-delimited list of event ids."},{"name":"message","value":null},{"name":"sending_member_id","value":null},{"name":"team_id","value":null}]},{"rel":"reorder_assignments","href":"http://localhost:3000/assignments/reorder","prompt":"reorder
|
221
|
+
the assignments based on the sorted_ids provided","data":[{"name":"event_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
|
222
|
+
array of the ids in the order that they are to be moved to"}]}]}}'
|
121
223
|
http_version: '1.1'
|
122
224
|
adapter_metadata:
|
123
|
-
effective_url: http://localhost:3000/assignments/search?member_id=1&hmac_client_id=
|
124
|
-
recorded_at:
|
125
|
-
recorded_with: VCR
|
225
|
+
effective_url: http://localhost:3000/assignments/search?member_id=1&hmac_client_id=classic_service&hmac_nonce=dc9efc5b-3087-49f9-ad97-561e68ed8528&hmac_timestamp=1590177506
|
226
|
+
recorded_at: Fri, 22 May 2020 19:58:27 GMT
|
227
|
+
recorded_with: VCR 5.1.0
|