teamsnap_rb 2.4.0 → 2.4.2
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/.github/workflows/ci.yml +25 -0
- data/.gitignore +1 -1
- data/.teamsnap/service.yml +18 -0
- data/CHANGELOG.md +12 -0
- data/CODEOWNERS +1 -0
- data/Gemfile +0 -2
- data/README.md +4 -6
- data/Rakefile +0 -5
- data/lib/teamsnap/api.rb +2 -1
- data/lib/teamsnap/auth_middleware.rb +2 -0
- data/lib/teamsnap/response.rb +7 -1
- data/lib/teamsnap/structure.rb +1 -1
- data/lib/teamsnap/version.rb +1 -1
- data/lib/teamsnap.rb +5 -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 +35 -20
- data/.travis.yml +0 -10
@@ -2,15 +2,17 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://localhost:3000/bulk_load?team_id=1&types=team%2Cmember&hmac_client_id=
|
5
|
+
uri: http://localhost:3000/bulk_load?team_id=1&types=team%2Cmember&hmac_client_id=classic_service&hmac_nonce=f515cdc8-bcc0-42a6-abc1-3231f2ba584b&hmac_timestamp=1590177530
|
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
|
+
- 48042240670e0775e5ed9c9e2ad3ac910644107393af3b0c513edb35e4a04e36
|
14
|
+
Expect:
|
15
|
+
- ''
|
14
16
|
response:
|
15
17
|
status:
|
16
18
|
code: 200
|
@@ -18,25 +20,23 @@ http_interactions:
|
|
18
20
|
headers:
|
19
21
|
Content-Type:
|
20
22
|
- application/vnd.collection+json
|
21
|
-
Content-Length:
|
22
|
-
- '94971'
|
23
23
|
X-Content-Type-Options:
|
24
24
|
- nosniff
|
25
25
|
ETag:
|
26
|
-
-
|
26
|
+
- W/"02086c14e6b74aaad0946581c36f97a1"
|
27
27
|
Cache-Control:
|
28
28
|
- max-age=0, private, must-revalidate
|
29
29
|
X-Request-Id:
|
30
|
-
-
|
30
|
+
- 310b7df6-e7a3-417a-bcf6-4cf47390d22a
|
31
31
|
X-Runtime:
|
32
|
-
- '0.
|
33
|
-
|
34
|
-
-
|
35
|
-
|
36
|
-
-
|
32
|
+
- '0.832823'
|
33
|
+
Vary:
|
34
|
+
- Origin
|
35
|
+
Content-Length:
|
36
|
+
- '121236'
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"collection":{"version":"3.
|
39
|
+
string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/bulk_load","rel":"bulk_load","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/bulk_load?team_id=1&types=team%2Cmember"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
|
40
40
|
a heterogeneous collection of the specified types for a specified team or
|
41
41
|
teams. Additional filters can be passed into requested types by passing them
|
42
42
|
in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
|
@@ -47,108 +47,296 @@ http_interactions:
|
|
47
47
|
a filter on events will return only assignments for the events returned."},{"name":"team_id","value":null,"prompt":"The
|
48
48
|
team_id(s) to return results for, this can be a single id or a comma-separated
|
49
49
|
list of ids."},{"name":"types","value":null,"prompt":"A comma separated list
|
50
|
-
of singular types that you want returned."}]}],"items":[{"href":"http://localhost:3000/teams/1","data":[{"name":"id","value":1},{"name":"type","value":"team"},{"name":"active_season_team_id","value":null},{"name":"division_name","value":null},{"name":"division_id","value":null},{"name":"is_archived_season","value":false},{"name":"is_retired","value":false},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"is_in_league","value":false},{"name":"location_country","value":"United
|
51
|
-
States"},{"name":"location_postal_code","value":"80951"},{"name":"location_latitude","value":null},{"name":"location_longitude","value":null},{"name":"name","value":"Base
|
52
|
-
Team"},{"name":"plan_id","value":14},{"name":"billed_at","value":"
|
53
|
-
Time (US & Canada)"},{"name":"time_zone_description","value":"Mountain
|
54
|
-
(US & Canada)"},{"name":"time_zone_iana_name","value":"America/Denver"
|
55
|
-
|
56
|
-
|
57
|
-
instead."},{"name":"
|
58
|
-
|
59
|
-
is deprecated and has been removed. Continued use of
|
60
|
-
it will no longer be stored."},{"name":"
|
61
|
-
is deprecated and will be removed in a future version, use is_address_hidden
|
62
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
63
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null},{"name":"is_commissioner","value":false},{"name":"invitation_code","value":null},{"name":"invitation_declined","value":null},{"name":"is_activated","value":true},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":false},{"name":"is_invited","value":false},{"name":"is_manager","value":true},{"name":"is_non_player","value":false},{"name":"is_owner","value":true},{"name":"is_ownership_pending","value":null},{"name":"jersey_number","value":null},{"name":"last_logged_in_at","value":null,"deprecated":true,"prompt":"%{field}
|
64
|
-
is deprecated and has been removed. Continued use of %{field} is not recommended
|
65
|
-
it will no longer be stored."},{"name":"last_name","value":"Owner"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":7},{"name":"updated_at","value":"2016-08-10T23:47:21Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:21Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=3"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=3"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=3"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=3"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=3"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=3"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=3"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=3"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=3"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?team_id=1"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=3"},{"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=3"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=3"},{"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=3"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=3"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=3"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=3"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=3"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=3"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=3"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=3"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=3"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/3"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=3"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=3"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=3"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=3"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=3"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=3"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=3"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-3"},{"href":"http://localhost:3000/members/4","data":[{"name":"id","value":4},{"name":"type","value":"member"},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_zip","value":null},{"name":"birthday","value":""},{"name":"first_name","value":"Noemail"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
|
66
|
-
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},{"name":"is_commissioner","value":false},{"name":"invitation_code","value":null},{"name":"invitation_declined","value":null},{"name":"is_activated","value":true},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":false},{"name":"is_invitable","value":false},{"name":"is_invited","value":false},{"name":"is_manager","value":false},{"name":"is_non_player","value":false},{"name":"is_owner","value":false},{"name":"is_ownership_pending","value":null},{"name":"jersey_number","value":null},{"name":"last_logged_in_at","value":null,"deprecated":true,"prompt":"%{field}
|
69
|
-
is deprecated and has been removed. Continued use of %{field} is not recommended
|
70
|
-
it will no longer be stored."},{"name":"last_name","value":"Emailless"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":9},{"name":"updated_at","value":"2016-08-10T23:47:22Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:22Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=4"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=4"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=4"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=4"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=4"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=4"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=4"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=4"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=4"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?team_id=1"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=4"},{"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=4"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=4"},{"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=4"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=4"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=4"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=4"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=4"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=4"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=4"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=4"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=4"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/4"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=4"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=4"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=4"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=4"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=4"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=4"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=4"},{"rel":"user","href":"http://localhost:3000/users/9"}],"rel":"member-4"},{"href":"http://localhost:3000/members/5","data":[{"name":"id","value":5},{"name":"type","value":"member"},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_zip","value":null},{"name":"birthday","value":""},{"name":"first_name","value":""},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
|
71
|
-
is deprecated and will be removed in a future version, use is_address_hidden
|
72
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
73
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null},{"name":"is_commissioner","value":false},{"name":"invitation_code","value":null},{"name":"invitation_declined","value":null},{"name":"is_activated","value":true},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":false},{"name":"is_invited","value":false},{"name":"is_manager","value":false},{"name":"is_non_player","value":false},{"name":"is_owner","value":false},{"name":"is_ownership_pending","value":null},{"name":"jersey_number","value":null},{"name":"last_logged_in_at","value":null,"deprecated":true,"prompt":"%{field}
|
74
|
-
is deprecated and has been removed. Continued use of %{field} is not recommended
|
75
|
-
it will no longer be stored."},{"name":"last_name","value":""},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":9},{"name":"updated_at","value":"2016-08-10T23:47:22Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:22Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=5"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=5"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=5"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=5"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=5"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=5"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=5"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=5"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=5"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields/search?team_id=1"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=5"},{"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=5"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=5"},{"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=5"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=5"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=5"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=5"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=5"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=5"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=5"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=5"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=5"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/5"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=5"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=5"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=5"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=5"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=5"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=5"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=5"},{"rel":"user","href":"http://localhost:3000/users/9"}],"rel":"member-5"},{"href":"http://localhost:3000/members/6","data":[{"name":"id","value":6},{"name":"type","value":"member"},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_zip","value":null},{"name":"birthday","value":""},{"name":"first_name","value":"Plato"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
|
50
|
+
of singular types that you want returned."}]}],"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
|
51
|
+
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
|
52
|
+
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
|
53
|
+
Time (US & Canada)","type":"String"},{"name":"time_zone_description","value":"Mountain
|
54
|
+
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
|
55
|
+
is deprecated and will be removed in a future version, use has_reached_member_limit
|
56
|
+
instead."},{"name":"has_reached_member_limit","value":false,"type":"Boolean"},{"name":"roster_limit","value":15,"type":"Boolean","deprecated":true,"prompt":"roster_limit
|
57
|
+
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
|
58
|
+
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"},{"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
|
59
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
60
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
76
61
|
is deprecated and will be removed in a future version, use is_address_hidden
|
77
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
78
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
79
|
-
is deprecated and
|
80
|
-
|
62
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
63
|
+
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
|
64
|
+
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}
|
65
|
+
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
|
66
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
67
|
+
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
|
68
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
69
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
70
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
71
|
+
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
|
72
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
73
|
+
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
|
74
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
75
|
+
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
|
76
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
77
|
+
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
|
78
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
79
|
+
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"},{"href":"http://localhost:3000/members/70","data":[{"name":"id","value":70,"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":"Ownie","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
|
80
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
81
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
81
82
|
is deprecated and will be removed in a future version, use is_address_hidden
|
82
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
83
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
84
|
-
is deprecated and
|
85
|
-
|
86
|
-
|
83
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
84
|
+
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
|
85
|
+
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}
|
86
|
+
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
|
87
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
88
|
+
is not recommended it will no longer be stored."},{"name":"is_shown_unreachable_for_chat_banner","value":true,"type":"Boolean"},{"name":"is_alertable","value":true,"type":"Boolean"},{"name":"is_emailable","value":true,"type":"Boolean"},{"name":"is_invitable","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
89
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
90
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
91
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
92
|
+
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":true,"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
|
93
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
94
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Owner","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":5,"type":"String","deprecated":true,"prompt":"user_id
|
95
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
96
|
+
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":["123-456-7891"],"type":"Array[String]"},{"name":"email_addresses","value":["owner@example.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=70"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=70"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=70"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=70"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=70"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=70"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=70"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=70"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=70"},{"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=70"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=70"},{"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=70"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=70"},{"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=70"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=70"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=70"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=70","prompt":"member_email_addresses
|
97
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
98
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=70"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=70"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=70"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=70","prompt":"member_phone_numbers
|
99
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
100
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=70"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/70"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=70"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=70"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=70"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=70"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=70"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=70"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=70"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=70"},{"rel":"user","href":"http://localhost:3000/users/5"}],"rel":"member-70"},{"href":"http://localhost:3000/members/71","data":[{"name":"id","value":71,"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":"1995-01-01","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"Noemail","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
|
101
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
102
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
87
103
|
is deprecated and will be removed in a future version, use is_address_hidden
|
88
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
89
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
90
|
-
is deprecated and
|
91
|
-
|
92
|
-
|
104
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
105
|
+
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
|
106
|
+
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}
|
107
|
+
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
|
108
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
109
|
+
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
|
110
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
111
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
112
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
113
|
+
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
|
114
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
115
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Emailless","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":7,"type":"String","deprecated":true,"prompt":"user_id
|
116
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
117
|
+
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":[],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=71"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=71"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=71"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=71"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=71"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=71"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=71"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=71"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=71"},{"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=71"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=71"},{"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=71"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=71"},{"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=71"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=71"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=71"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=71","prompt":"member_email_addresses
|
118
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
119
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=71"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=71"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=71"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=71","prompt":"member_phone_numbers
|
120
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
121
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=71"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/71"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=71"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=71"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=71"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=71"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=71"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=71"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=71"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=71"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-71"},{"href":"http://localhost:3000/members/72","data":[{"name":"id","value":72,"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":"1989-01-01","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"","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
|
122
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
123
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
93
124
|
is deprecated and will be removed in a future version, use is_address_hidden
|
94
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
95
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
96
|
-
is deprecated and
|
97
|
-
|
98
|
-
|
125
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
126
|
+
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
|
127
|
+
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}
|
128
|
+
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
|
129
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
130
|
+
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
|
131
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
132
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
133
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
134
|
+
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
|
135
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
136
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"","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":7,"type":"String","deprecated":true,"prompt":"user_id
|
137
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
138
|
+
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":["no_name@example.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=72"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=72"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=72"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=72"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=72"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=72"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=72"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=72"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=72"},{"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=72"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=72"},{"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=72"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=72"},{"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=72"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=72"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=72"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=72","prompt":"member_email_addresses
|
139
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
140
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=72"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=72"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=72"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=72","prompt":"member_phone_numbers
|
141
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
142
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=72"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/72"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=72"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=72"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=72"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=72"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=72"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=72"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=72"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=72"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-72"},{"href":"http://localhost:3000/members/73","data":[{"name":"id","value":73,"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":"1986-01-01","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"Plato","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
|
143
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
144
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
99
145
|
is deprecated and will be removed in a future version, use is_address_hidden
|
100
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
101
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
102
|
-
is deprecated and
|
103
|
-
|
104
|
-
|
146
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
147
|
+
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
|
148
|
+
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}
|
149
|
+
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
|
150
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
151
|
+
is not recommended it will no longer be stored."},{"name":"is_shown_unreachable_for_chat_banner","value":true,"type":"Boolean"},{"name":"is_alertable","value":true,"type":"Boolean"},{"name":"is_emailable","value":true,"type":"Boolean"},{"name":"is_invitable","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
152
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
153
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
154
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
155
|
+
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
|
156
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
157
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":7,"type":"String","deprecated":true,"prompt":"user_id
|
158
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
159
|
+
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:15Z","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":["123-456-7890"],"type":"Array[String]"},{"name":"email_addresses","value":["player@example.com","mom@example.com","dad@example.com","grandpa@example.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=73"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=73"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=73"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=73"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=73"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=73"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=73"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=73"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=73"},{"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=73"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=73"},{"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=73"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=73"},{"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=73"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=73"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=73"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=73","prompt":"member_email_addresses
|
160
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
161
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=73"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=73"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=73"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=73","prompt":"member_phone_numbers
|
162
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
163
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=73"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/73"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=73"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=73"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=73"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=73"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=73"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=73"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=73"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=73"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-73"},{"href":"http://localhost:3000/members/74","data":[{"name":"id","value":74,"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":"2000-01-01","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"Player","type":"String"},{"name":"gender","value":"Female","type":"String"},{"name":"has_facebook_post_scores_enabled","value":false,"type":"Boolean","deprecated":true,"prompt":"has_facebook_post_scores_enabled
|
164
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
165
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
105
166
|
is deprecated and will be removed in a future version, use is_address_hidden
|
106
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
107
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
108
|
-
is deprecated and
|
109
|
-
|
110
|
-
|
167
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
168
|
+
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
|
169
|
+
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}
|
170
|
+
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
|
171
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
172
|
+
is not recommended it will no longer be stored."},{"name":"is_shown_unreachable_for_chat_banner","value":true,"type":"Boolean"},{"name":"is_alertable","value":true,"type":"Boolean"},{"name":"is_emailable","value":true,"type":"Boolean"},{"name":"is_invitable","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
173
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
174
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
175
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
176
|
+
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":"23","type":"String"},{"name":"last_logged_in_at","value":null,"type":"DateTime","deprecated":true,"prompt":"last_logged_in_at
|
177
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
178
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Labeled","type":"String"},{"name":"position","value":"Goalie","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":7,"type":"String","deprecated":true,"prompt":"user_id
|
179
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
180
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":["123-456-7890"],"type":"Array[String]"},{"name":"email_addresses","value":["labeled@example.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=74"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=74"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=74"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=74"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=74"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=74"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=74"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=74"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=74"},{"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=74"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=74"},{"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=74"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=74"},{"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=74"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=74"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=74"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=74","prompt":"member_email_addresses
|
181
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
182
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=74"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=74"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=74"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=74","prompt":"member_phone_numbers
|
183
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
184
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=74"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/74"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=74"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=74"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=74"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=74"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=74"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=74"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=74"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=74"},{"rel":"user","href":"http://localhost:3000/users/7"}],"rel":"member-74"},{"href":"http://localhost:3000/members/75","data":[{"name":"id","value":75,"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":"Uninvited
|
185
|
+
0","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
|
186
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
187
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
111
188
|
is deprecated and will be removed in a future version, use is_address_hidden
|
112
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
113
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
114
|
-
is deprecated and
|
115
|
-
|
116
|
-
|
189
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
190
|
+
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":"14019a0bcd37ce190e9c02c1","type":"String","deprecated":true,"prompt":"invitation_code
|
191
|
+
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}
|
192
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
193
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
194
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
195
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
196
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
197
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
198
|
+
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
|
199
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
200
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
201
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
202
|
+
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:58:21Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john56@doe.com","jane856@doe.com","jane671@doe.com","jane555@doe.com","jane959@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=75"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=75"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=75"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=75"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=75"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=75"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=75"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=75"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=75"},{"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=75"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=75"},{"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=75"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=75"},{"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=75"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=75"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=75"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=75","prompt":"member_email_addresses
|
203
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
204
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=75"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=75"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=75"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=75","prompt":"member_phone_numbers
|
205
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
206
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=75"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/75"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=75"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=75"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=75"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=75"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=75"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=75"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=75"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=75"}],"rel":"member-75"},{"href":"http://localhost:3000/members/76","data":[{"name":"id","value":76,"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":"Uninvited
|
207
|
+
1","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
|
208
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
209
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
117
210
|
is deprecated and will be removed in a future version, use is_address_hidden
|
118
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
119
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
120
|
-
is deprecated and
|
121
|
-
|
122
|
-
|
211
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
212
|
+
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":"4c0fc04334f9858bbaefda19","type":"String","deprecated":true,"prompt":"invitation_code
|
213
|
+
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}
|
214
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
215
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
216
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
217
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
218
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
219
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
220
|
+
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
|
221
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
222
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
223
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
224
|
+
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:58:21Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john316@doe.com","jane590@doe.com","jane288@doe.com","jane917@doe.com","jane935@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=76"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=76"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=76"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=76"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=76"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=76"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=76"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=76"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=76"},{"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=76"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=76"},{"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=76"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=76"},{"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=76"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=76"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=76"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=76","prompt":"member_email_addresses
|
225
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
226
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=76"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=76"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=76"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=76","prompt":"member_phone_numbers
|
227
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
228
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=76"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/76"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=76"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=76"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=76"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=76"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=76"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=76"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=76"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=76"}],"rel":"member-76"},{"href":"http://localhost:3000/members/77","data":[{"name":"id","value":77,"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":"Uninvited
|
229
|
+
2","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
|
230
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
231
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
123
232
|
is deprecated and will be removed in a future version, use is_address_hidden
|
124
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
125
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
126
|
-
is deprecated and
|
127
|
-
|
128
|
-
|
233
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
234
|
+
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
|
235
|
+
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}
|
236
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
237
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
238
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
239
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
240
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
241
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
242
|
+
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
|
243
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
244
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
245
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
246
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john684@doe.com","jane744@doe.com","jane283@doe.com","jane508@doe.com","jane806@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=77"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=77"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=77"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=77"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=77"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=77"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=77"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=77"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=77"},{"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=77"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=77"},{"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=77"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=77"},{"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=77"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=77"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=77"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=77","prompt":"member_email_addresses
|
247
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
248
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=77"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=77"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=77"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=77","prompt":"member_phone_numbers
|
249
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
250
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=77"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/77"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=77"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=77"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=77"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=77"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=77"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=77"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=77"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=77"}],"rel":"member-77"},{"href":"http://localhost:3000/members/78","data":[{"name":"id","value":78,"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":"Invited
|
251
|
+
0","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
|
252
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
253
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
129
254
|
is deprecated and will be removed in a future version, use is_address_hidden
|
130
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
131
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
132
|
-
is deprecated and
|
133
|
-
|
134
|
-
|
255
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
256
|
+
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":"r01c2aa4a90b0a1d8fda75cb5","type":"String","deprecated":true,"prompt":"invitation_code
|
257
|
+
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}
|
258
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
259
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
260
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
261
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
262
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
263
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
264
|
+
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
|
265
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
266
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
267
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
268
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john624@doe.com","jane24@doe.com","jane701@doe.com","jane550@doe.com","jane883@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=78"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=78"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=78"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=78"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=78"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=78"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=78"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=78"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=78"},{"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=78"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=78"},{"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=78"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=78"},{"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=78"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=78"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=78"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=78","prompt":"member_email_addresses
|
269
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
270
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=78"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=78"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=78"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=78","prompt":"member_phone_numbers
|
271
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
272
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=78"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/78"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=78"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=78"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=78"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=78"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=78"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=78"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=78"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=78"}],"rel":"member-78"},{"href":"http://localhost:3000/members/79","data":[{"name":"id","value":79,"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":"Invited
|
273
|
+
1","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
|
274
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
275
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
135
276
|
is deprecated and will be removed in a future version, use is_address_hidden
|
136
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
137
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
138
|
-
is deprecated and
|
139
|
-
|
277
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
278
|
+
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":"rd0cab1e52ff532d81fbf01bd","type":"String","deprecated":true,"prompt":"invitation_code
|
279
|
+
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}
|
280
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
281
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
282
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
283
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
284
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
285
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
286
|
+
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
|
287
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
288
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
289
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
290
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john154@doe.com","jane84@doe.com","jane538@doe.com","jane590@doe.com","jane933@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=79"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=79"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=79"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=79"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=79"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=79"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=79"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=79"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=79"},{"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=79"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=79"},{"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=79"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=79"},{"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=79"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=79"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=79"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=79","prompt":"member_email_addresses
|
291
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
292
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=79"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=79"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=79"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=79","prompt":"member_phone_numbers
|
293
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
294
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=79"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/79"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=79"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=79"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=79"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=79"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=79"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=79"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=79"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=79"}],"rel":"member-79"},{"href":"http://localhost:3000/members/80","data":[{"name":"id","value":80,"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":"Invited
|
295
|
+
2","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
|
296
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
297
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
140
298
|
is deprecated and will be removed in a future version, use is_address_hidden
|
141
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
142
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
143
|
-
is deprecated and
|
144
|
-
|
299
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
300
|
+
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":"r079730a9b6cd83645367a6d7","type":"String","deprecated":true,"prompt":"invitation_code
|
301
|
+
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}
|
302
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
303
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
304
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
305
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
306
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
307
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
308
|
+
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
|
309
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
310
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
311
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
312
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["john975@doe.com","jane911@doe.com","jane935@doe.com","jane294@doe.com","jane47@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=80"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=80"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=80"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=80"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=80"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=80"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=80"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=80"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=80"},{"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=80"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=80"},{"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=80"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=80"},{"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=80"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=80"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=80"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=80","prompt":"member_email_addresses
|
313
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
314
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=80"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=80"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=80"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=80","prompt":"member_phone_numbers
|
315
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
316
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=80"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/80"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=80"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=80"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=80"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=80"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=80"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=80"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=80"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=80"}],"rel":"member-80"},{"href":"http://localhost:3000/members/81","data":[{"name":"id","value":81,"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":"Non","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
|
317
|
+
is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
|
318
|
+
is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
|
145
319
|
is deprecated and will be removed in a future version, use is_address_hidden
|
146
|
-
instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
|
147
|
-
is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null
|
148
|
-
is deprecated and
|
149
|
-
|
320
|
+
instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
|
321
|
+
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
|
322
|
+
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}
|
323
|
+
is deprecated and will be removed in a future version, use %{new} instead."},{"name":"is_activated","value":false,"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
|
324
|
+
is deprecated and has been removed. Continued use of is_selectable_for_chat
|
325
|
+
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":true,"type":"Boolean","deprecated":true,"prompt":"is_invitable
|
326
|
+
is deprecated and has been removed. Continued use of is_invitable is not
|
327
|
+
recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
|
328
|
+
is deprecated and has been removed. Continued use of is_invited is not recommended
|
329
|
+
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":true,"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
|
330
|
+
is deprecated and has been removed. Continued use of last_logged_in_at is
|
331
|
+
not recommended it will no longer be stored."},{"name":"last_name","value":"Player","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":null,"type":"String","deprecated":true,"prompt":"user_id
|
332
|
+
is deprecated and has been removed. Continued use of user_id is not recommended
|
333
|
+
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:15Z","type":"DateTime"},{"name":"created_at","value":"2020-05-22T19:56:15Z","type":"DateTime"},{"name":"source_member_id","value":null,"type":"String"},{"name":"phone_numbers","value":[],"type":"Array[String]"},{"name":"email_addresses","value":["non_player@doe.com"],"type":"Array[String]"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=81"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=81"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=81"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=81"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=81"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=81"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=81"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=81"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=81"},{"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=81"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data/search?member_id=81"},{"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=81"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=81"},{"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=81"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=81"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=81"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=81","prompt":"member_email_addresses
|
334
|
+
is deprecated and has been removed. Continued use of member_email_addresses
|
335
|
+
is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=81"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=81"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=81"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=81","prompt":"member_phone_numbers
|
336
|
+
is deprecated and has been removed. Continued use of member_phone_numbers
|
337
|
+
is not recommended it will no longer be stored."},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=81"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/81"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups/search?member_id=81"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=81"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=81"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=81"},{"rel":"registration_form","href":"http://localhost:3000/registration_forms/"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=81"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=81"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=81"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=81"}],"rel":"member-81"}]}}'
|
150
338
|
http_version: '1.1'
|
151
339
|
adapter_metadata:
|
152
|
-
effective_url: http://localhost:3000/bulk_load?team_id=1&types=team%2Cmember&hmac_client_id=
|
153
|
-
recorded_at:
|
154
|
-
recorded_with: VCR
|
340
|
+
effective_url: http://localhost:3000/bulk_load?team_id=1&types=team%2Cmember&hmac_client_id=classic_service&hmac_nonce=f515cdc8-bcc0-42a6-abc1-3231f2ba584b&hmac_timestamp=1590177530
|
341
|
+
recorded_at: Fri, 22 May 2020 19:58:51 GMT
|
342
|
+
recorded_with: VCR 5.1.0
|