teamsnap_rb 2.4.0 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.github/stale.yml +16 -0
  3. data/.gitignore +1 -1
  4. data/.travis.yml +5 -6
  5. data/CHANGELOG.md +7 -0
  6. data/Gemfile +1 -2
  7. data/README.md +0 -1
  8. data/Rakefile +0 -5
  9. data/lib/teamsnap.rb +5 -1
  10. data/lib/teamsnap/api.rb +2 -1
  11. data/lib/teamsnap/auth_middleware.rb +2 -0
  12. data/lib/teamsnap/response.rb +5 -1
  13. data/lib/teamsnap/version.rb +1 -1
  14. data/spec/cassettes/apiv3-init.yml +850 -236
  15. data/spec/cassettes/teamsnap__api/_run/when_creating/when_successful/can_parse_the_json.yml +73 -0
  16. data/spec/cassettes/teamsnap__api/_run/when_deleting/when_successful/handles_empty_response_body.yml +38 -0
  17. data/spec/cassettes/teamsnap__client/_api/Sends_the_proper_information_to_TeamSnap_Api_run.yml +87 -0
  18. 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
  19. data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/passes_them_to_the_faraday_client_using_method_missing.yml +24 -17
  20. data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/correctly_sets_the_ghost_header_flag.yml +846 -232
  21. data/spec/cassettes/teamsnap__client/when_specifying_a_headers_flag/won_t_set_feature_headers_without_the_header_variable_present.yml +847 -232
  22. data/spec/cassettes/teamsnap__collection/_items/returns_all_items_for_a_base_collection.yml +68 -63
  23. data/spec/cassettes/teamsnap__collection/adds_find_if_search_is_available.yml +44 -27
  24. data/spec/cassettes/teamsnap__collection/adds_href_to_items.yml +132 -33
  25. data/spec/cassettes/teamsnap__collection/can_follow_plural_links.yml +421 -136
  26. data/spec/cassettes/teamsnap__collection/can_follow_singular_links.yml +175 -59
  27. data/spec/cassettes/teamsnap__collection/can_handle_links_with_no_data.yml +155 -53
  28. data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands.yml +132 -33
  29. data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands_with_multiple_params.yml +75 -35
  30. data/spec/cassettes/teamsnap__collection/handles_fetching_data_via_queries.yml +44 -27
  31. data/spec/cassettes/teamsnap__collection/handles_queries_with_no_data.yml +36 -22
  32. data/spec/cassettes/teamsnap__collection/raises_an_exception_if_find_returns_nothing.yml +36 -22
  33. 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
  34. 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
  35. 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
  36. 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
  37. data/spec/cassettes/teamsnap__structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +36 -22
  38. data/spec/cassettes/teamsnap__structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +36 -22
  39. data/spec/cassettes/teamsnap__structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +24 -17
  40. data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_empty_bulk_load.yml +16 -16
  41. data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_error_with_bulk_load_without_a_team_id.yml +14 -14
  42. data/spec/cassettes/teamsnap_rb/_bulk_load/can_use_bulk_load.yml +291 -103
  43. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/accepts_test_file_arg_when_creating_HMAC.yml +82 -2653
  44. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_DELETE_on_the_given_client.yml +67 -2639
  45. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_GET_on_the_given_client.yml +24 -17
  46. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_PATCH_on_the_given_client.yml +67 -2639
  47. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_POST_on_the_given_client.yml +67 -2639
  48. data/spec/cassettes/teamsnap_rb/_run/processes_the_response.yml +93 -65
  49. data/spec/cassettes/uploading_files/uploads_a_file.yml +130 -31
  50. data/spec/cassettes/uploading_files/uploads_a_tempfile.yml +130 -31
  51. data/spec/features/uploading_files_spec.rb +2 -2
  52. data/spec/spec_helper.rb +0 -13
  53. data/spec/teamsnap/apiv_spec.rb +49 -1
  54. data/spec/teamsnap/client_spec.rb +4 -4
  55. data/spec/teamsnap/collection_spec.rb +5 -5
  56. data/spec/teamsnap/item_spec.rb +1 -1
  57. data/spec/teamsnap/structure_spec.rb +2 -2
  58. data/spec/teamsnap_spec.rb +4 -4
  59. data/teamsnap_rb.gemspec +5 -5
  60. metadata +27 -14
@@ -2,15 +2,17 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:3000/teams/search?id=1&hmac_client_id=classic&hmac_nonce=d26cc7eb-6637-4552-a1ba-6eeeb6a9cc5d&hmac_timestamp=1470941485
5
+ uri: http://localhost:3000/teams/search?id=1&hmac_client_id=classic_service&hmac_nonce=ba58f280-1e51-4258-8667-262c46bb1ea6&hmac_timestamp=1590177503
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.17.3
12
12
  X-Teamsnap-Hmac:
13
- - 3ff5517e3248822ce3713e1963e36cb7d79217b6b280fd0f637f898c3b2f5691
13
+ - f08a67cd25fd21e88336fd126d247f34d2ec853e419f04475547bafc1d5b14c9
14
+ Expect:
15
+ - ''
14
16
  response:
15
17
  status:
16
18
  code: 200
@@ -18,27 +20,25 @@ http_interactions:
18
20
  headers:
19
21
  Content-Type:
20
22
  - application/vnd.collection+json
21
- Content-Length:
22
- - '17336'
23
23
  X-Content-Type-Options:
24
24
  - nosniff
25
25
  ETag:
26
- - '"25a0de50bfdb13b0ccda28fcd95b8b58"'
26
+ - W/"b5967b2af37d629a967b0f91fd901e17"
27
27
  Cache-Control:
28
28
  - max-age=0, private, must-revalidate
29
29
  X-Request-Id:
30
- - 177772c8-e0c3-44a0-9ffb-cf12a6a8203e
30
+ - f126fbc5-a1f5-4797-a5df-673bdeac83c7
31
31
  X-Runtime:
32
- - '0.066755'
33
- Connection:
34
- - keep-alive
35
- Server:
36
- - thin
32
+ - '0.568150'
33
+ Vary:
34
+ - Origin
35
+ Content-Length:
36
+ - '23104'
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '{"collection":{"version":"3.306.2","href":"http://localhost:3000/teams","rel":"teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null,"prompt":"The
39
+ string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/teams","rel":"teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null,"prompt":"The
40
40
  time_zone parameter is required when creating a team, but for changing a team''s
41
- time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams/search?id=1"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
41
+ time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"owner_first_name","value":null},{"name":"owner_last_name","value":null},{"name":"owner_email","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"team"}]},"links":[{"rel":"advertisements","href":"http://localhost:3000/advertisements"},{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"batch_invoices","href":"http://localhost:3000/batch_invoices"},{"rel":"batch_invoices_aggregates","href":"http://localhost:3000/batch_invoices_aggregates"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"commissioners","href":"http://localhost:3000/members"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_photos","href":"http://localhost:3000/member_photos"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"sport_positions","href":"http://localhost:3000/sport_positions"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_photos","href":"http://localhost:3000/team_photos"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"team_stores","href":"http://localhost:3000/team_stores"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams/search?id=1"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","sort":["name"],"data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
42
42
  number of items to return for each page. Sending this parameter with the query
43
43
  will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
44
44
  number of the page to be returned. This requires that paging be turned on
@@ -47,37 +47,56 @@ http_interactions:
47
47
  ''desc''."}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
48
48
  all teams accessible to current user that have the provided sport_id and have
49
49
  at least one statistic to import","data":[{"name":"sport_id","value":null}]},{"rel":"active_teams","href":"http://localhost:3000/teams/active","prompt":"Finds
50
- all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
50
+ all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null},{"name":"division_id","value":null}]},{"rel":"division_search","href":"http://localhost:3000/teams/division_search","prompt":"Search
51
+ the teams on the division_id and its descendants or a commissioner''s user_id.","data":[{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"is_active","value":null},{"name":"is_commissioner","value":null},{"name":"page_size","value":null,"prompt":"The
52
+ number of items to return for each page. Sending this parameter with the query
53
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
54
+ number of the page to be returned. This requires that paging be turned on
55
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
51
56
  team members or contacts to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"member_id","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]},{"rel":"update_time_zone","href":"http://localhost:3000/teams/update_time_zone","prompt":"Update
52
57
  team''s time zone. This is currently the only method of updating a team''s
53
- time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
58
+ time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null,"deprecated":true,"prompt":"%{old}
59
+ is deprecated and will be removed in a future version, use %{new} instead."}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
54
60
  all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]},{"rel":"invite_team_owners","href":"http://localhost:3000/teams/invite_team_owners","prompt":"Beta:
55
61
  (This endpoint subject to change) Allow commissioners to send invitations
56
62
  to all owners on active teams in the division.","data":[{"name":"id","value":null}]},{"rel":"change_owner","href":"http://localhost:3000/teams/change_owner","prompt":"Beta:
57
63
  (This endpoint subject to change) Allow commissioners to change the owner
58
- of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"division_search","href":"http://localhost:3000/teams/division_search","prompt":"Beta:
59
- (This endpoint subject to change) Search the teams on the division_id and
60
- it''s descendants.","data":[{"name":"division_id","value":null},{"name":"is_active","value":null}]}],"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
61
- States"},{"name":"location_postal_code","value":"80951"},{"name":"location_latitude","value":null},{"name":"location_longitude","value":null},{"name":"name","value":"Base
62
- Team"},{"name":"plan_id","value":14},{"name":"billed_at","value":"2016-08-10T07:00:00Z"},{"name":"season_name","value":null},{"name":"sport_id","value":1},{"name":"time_zone","value":"Mountain
63
- Time (US & Canada)"},{"name":"time_zone_description","value":"Mountain Time
64
- (US & Canada)"},{"name":"time_zone_iana_name","value":"America/Denver"},{"name":"time_zone_offset","value":"-07:00"},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:20Z","type":"DateTime"},{"name":"has_reached_roster_limit","value":false},{"name":"roster_limit","value":30},{"name":"has_exportable_media","value":false},{"name":"can_export_media","value":false},{"name":"last_accessed_at","value":null,"type":"DateTime"},{"name":"media_storage_used","value":0},{"name":"humanized_media_storage_used","value":"0
65
- B"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?team_id=1"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/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/b36a1370-4182-0134-945b-245e60c7d3c3.ics"},{"rel":"calendar_http_games_only","href":"http://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/filter/games/b36a1370-4182-0134-945b-245e60c7d3c3.ics"},{"rel":"calendar_webcal","href":"webcal://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/b36a1370-4182-0134-945b-245e60c7d3c3.ics"},{"rel":"calendar_webcal_games_only","href":"webcal://86ed2e8eefaaee16c4b7-16391cffaf9272bff70e93998d553c16.r2.cf1.rackcdn.com/team_schedule/filter/games/b36a1370-4182-0134-945b-245e60c7d3c3.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":"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":"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":"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":"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":"team_fees","href":"http://localhost:3000/team_fees/search?team_id=1"},{"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":"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-1"}]}}'
64
+ of a league team.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null}]},{"rel":"toggle_team_visibility_on_dashboard","href":"http://localhost:3000/teams/toggle_team_visibility_on_dashboard","prompt":"Toggles
65
+ the visibility of teams on the list of active teams, per user. Requires a
66
+ single id or a comma separated list of ''team_id''s","data":[{"name":"team_ids","value":null}]},{"rel":"send_upsell_message_from_owner","href":"http://localhost:3000/teams/send_upsell_message_from_owner","prompt":"Send
67
+ an upsell email to the team owner.","data":[{"name":"team_id","value":null},{"name":"feature","value":null}]},{"rel":"send_upsell_message_from_contact","href":"http://localhost:3000/teams/send_upsell_message_from_contact","prompt":"Send
68
+ an upsell email to the team owner from a contact.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"feature","value":null}]},{"rel":"update_team_plan","href":"http://localhost:3000/teams/update_team_plan","prompt":"Update
69
+ team''s plan. Requires a single id or a comma separated list of ''team_id''s
70
+ and a plan_id.","data":[{"name":"team_ids","value":null},{"name":"plan_id","value":null}]},{"rel":"apply_promotion","href":"http://localhost:3000/teams/apply_promotion","prompt":"Apply
71
+ a promotion to a team. Requires a single id or a comma separated list of ''team_id''s,
72
+ promotion_name, promotion_length and a plan_id.","data":[{"name":"team_ids","value":null},{"name":"promotion_name","value":null},{"name":"promotion_length","value":null},{"name":"plan_id","value":null}]},{"rel":"enable_fundraising","href":"http://localhost:3000/teams/enable_fundraising","prompt":"Enable
73
+ fundraising for a team. Requires a single team_id and goal_cents as the fundraising
74
+ goal.","data":[{"name":"team_id","value":null},{"name":"goal_cents","value":null}]}],"items":[{"href":"http://localhost:3000/teams/1","data":[{"name":"id","value":1,"type":"String"},{"name":"type","value":"team","type":"String"},{"name":"active_season_team_id","value":null,"type":"String"},{"name":"division_name","value":null,"type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"division_root_id","value":null,"type":"Integer"},{"name":"is_archived_season","value":false,"type":"Boolean"},{"name":"is_hidden_on_dashboard","value":false,"type":"Boolean"},{"name":"is_retired","value":false,"type":"Boolean"},{"name":"league_name","value":null,"type":"String"},{"name":"league_url","value":null,"type":"String"},{"name":"is_in_league","value":false,"type":"Boolean"},{"name":"location_country","value":"United
75
+ 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
76
+ 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
77
+ Time (US & Canada)","type":"String"},{"name":"time_zone_description","value":"Mountain
78
+ 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
79
+ is deprecated and will be removed in a future version, use has_reached_member_limit
80
+ instead."},{"name":"has_reached_member_limit","value":false,"type":"Boolean"},{"name":"roster_limit","value":15,"type":"Boolean","deprecated":true,"prompt":"roster_limit
81
+ 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
82
+ 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"}]}}'
66
83
  http_version: '1.1'
67
84
  adapter_metadata:
68
- effective_url: http://localhost:3000/teams/search?id=1&hmac_client_id=classic&hmac_nonce=d26cc7eb-6637-4552-a1ba-6eeeb6a9cc5d&hmac_timestamp=1470941485
69
- recorded_at: Thu, 11 Aug 2016 18:51:25 GMT
85
+ effective_url: http://localhost:3000/teams/search?id=1&hmac_client_id=classic_service&hmac_nonce=ba58f280-1e51-4258-8667-262c46bb1ea6&hmac_timestamp=1590177503
86
+ recorded_at: Fri, 22 May 2020 19:58:23 GMT
70
87
  - request:
71
88
  method: get
72
- uri: http://localhost:3000/members/search?team_id=1&hmac_client_id=classic&hmac_nonce=e8aa4bb1-73bd-409c-8f87-c54d04d3d5ef&hmac_timestamp=1470941485
89
+ uri: http://localhost:3000/members/search?team_id=1&hmac_client_id=classic_service&hmac_nonce=653f52da-c9be-4523-99f9-73e3f5e45c28&hmac_timestamp=1590177503
73
90
  body:
74
91
  encoding: US-ASCII
75
92
  string: ''
76
93
  headers:
77
94
  User-Agent:
78
- - Faraday v0.9.2
95
+ - Faraday v0.17.3
79
96
  X-Teamsnap-Hmac:
80
- - d3b7e2dbd0b280fc083c5e5c6daa1eedbaf89e78f05113d1bedc2050dbe7f1f5
97
+ - d50e38d751ec32465725ab9a3203b3bb397e787a2683de2273101e86d606815d
98
+ Expect:
99
+ - ''
81
100
  response:
82
101
  status:
83
102
  code: 200
@@ -85,147 +104,413 @@ http_interactions:
85
104
  headers:
86
105
  Content-Type:
87
106
  - application/vnd.collection+json
88
- Content-Length:
89
- - '92538'
90
107
  X-Content-Type-Options:
91
108
  - nosniff
92
109
  ETag:
93
- - '"292d21cb8c6b66e4e6c12c31d13bdb30"'
110
+ - W/"f5825eca68b58ddb1346ed37a2900d0c"
94
111
  Cache-Control:
95
112
  - max-age=0, private, must-revalidate
96
113
  X-Request-Id:
97
- - 55e3dfb8-e8ec-43e8-bc4a-2c3967148ae5
114
+ - dff9b0ca-07f5-4413-a504-a70d144cdc26
98
115
  X-Runtime:
99
- - '0.580580'
100
- Connection:
101
- - keep-alive
102
- Server:
103
- - thin
116
+ - '0.577553'
117
+ Vary:
118
+ - Origin
119
+ Content-Length:
120
+ - '124396'
104
121
  body:
105
122
  encoding: UTF-8
106
- string: '{"collection":{"version":"3.306.2","href":"http://localhost:3000/members","rel":"members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
123
+ string: '{"collection":{"version":"3.854.0","href":"http://localhost:3000/members","rel":"members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
107
124
  is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
108
125
  is deprecated and will be removed in a future version, use is_address_hidden
109
- instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members/search?team_id=1"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
126
+ instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"is_ownership_pending","value":null},{"name":"source_action","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses","prompt":"member_email_addresses
127
+ is deprecated and has been removed. Continued use of member_email_addresses
128
+ is not recommended it will no longer be stored."},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers","prompt":"member_phone_numbers
129
+ is deprecated and has been removed. Continued use of member_phone_numbers
130
+ is not recommended it will no longer be stored."},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_registration_signups","href":"http://localhost:3000/member_registration_signups"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"message_data","href":"http://localhost:3000/message_data"},{"rel":"messages","href":"http://localhost:3000/messages"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members/search?team_id=1"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"can_receive_push_notifications","value":null},{"name":"page_size","value":null,"prompt":"The
110
131
  number of items to return for each page. Sending this parameter with the query
111
132
  will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
112
133
  number of the page to be returned. This requires that paging be turned on
113
134
  by also providing the page_size parameter."}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"personas","href":"http://localhost:3000/members/personas","prompt":"Given
114
135
  a user ID, returns members directly associated with the user as well as members
115
- associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"BETA:
116
- (this query is subject to change or suddenly disappear) Given a a team_id
117
- or division_id, returns all members that are commissioners of the divisions
118
- that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
136
+ associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"commissioners","href":"http://localhost:3000/members/commissioners","prompt":"Given
137
+ a a team_id or division_id, returns all members that are commissioners of
138
+ the divisions that the team is in.","data":[{"name":"team_id","value":null},{"name":"division_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
119
139
  a user ID, returns all members associated with user''s active season teams. If
120
140
  include_archived_teams (boolean) parameter is supplied, members associated
121
- with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
141
+ with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"Searches
142
+ the division and subdivision for the members meeting the search criteria.","data":[{"name":"division_id","value":null,"prompt":"Id
143
+ of the division and descendants to search"},{"name":"is_unassigned","value":null,"prompt":"true/false
144
+ - For all members in a division that aren''t assigned to a team. Not used
145
+ if blank."},{"name":"is_activated","value":null,"prompt":"true/false - For
146
+ all members in a division that have a user. Not used if blank."},{"name":"is_commissioner","value":null,"prompt":"true/false
147
+ - For all members in a division that are or are not a commissioner. Not used
148
+ if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
149
+ - Find all members in a division that are or are not pending ownership. Not
150
+ used if blank."},{"name":"page_size","value":null,"prompt":"The number of
151
+ items to return for each page. Sending this parameter with the query will
152
+ enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
153
+ number of the page to be returned. This requires that paging be turned on
154
+ by also providing the page_size parameter."}]},{"rel":"advanced_division_search","href":"http://localhost:3000/members/advanced_division_search","prompt":"Searches
155
+ the division and subdivision for the members meeting the search criteria.
156
+ Searches using this endpoint accept additional parameters. You can search
157
+ for equality by formatting the string as ''operator:equals,value:<SEARCH STRING>''.
158
+ You can also search inquality by using not_equals as ''operator:not_equals,value:<SEARCH
159
+ STRING>''. You may search for additional parameters by sending them as an
160
+ array, for instance: ?birthday[]=operator:less_than,value:2016-02-02&birthday[]=operator:greater_than,value:2010-02-02.
161
+ Other operators are less_than_or_equal and greater_than_or_equal","data":[{"name":"division_id","value":null,"prompt":"Id
162
+ of the division and descendants to search"},{"name":"id","value":null,"prompt":"Id
163
+ of the member to search"},{"name":"user_id","value":null,"prompt":"Id of the
164
+ user to search"},{"name":"is_commissioner","value":null,"prompt":"true/false
165
+ - For all members in a division that are or are not a commissioner. Not used
166
+ if blank."},{"name":"birthday","value":null,"prompt":"date - Accepts advanced
167
+ search operators ''less_than'' and ''greater_than''."},{"name":"team_id","value":null,"prompt":"integer
168
+ - Find all members in a division with the specified team_id(s)."},{"name":"is_coach","value":null,"prompt":"true/false
169
+ - Find all members in a division that are or are not a coach. Not used if
170
+ blank."},{"name":"is_manager","value":null,"prompt":"true/false - Find all
171
+ members in a division that are or are not a team manager. Not used if blank."},{"name":"is_non_player","value":null,"prompt":"true/false
172
+ - Find all members in a division that are or are not a players. Not used if
173
+ blank."},{"name":"is_owner","value":null,"prompt":"true/false - Find all members
174
+ in a division that are or are not owners. Not used if blank."},{"name":"is_ownership_pending","value":null,"prompt":"true/false
175
+ - Find all members in a division that are or are not pending ownership. Not
176
+ used if blank."},{"name":"gender","value":null,"prompt":"Male/Female - Find
177
+ all members in a division with the specified gender."},{"name":"first_name","value":null,"prompt":"string
178
+ - Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"last_name","value":null,"prompt":"string
179
+ - Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"email","value":null,"prompt":"string
180
+ - Accepts advanced search operators ''equals'', ''contains'' and ''starts_with''."},{"name":"custom_field","value":null,"prompt":"string
181
+ - Required advanced search parameter of ''id'' that should be the id of the
182
+ custom field to be searched on. Accepts advanced search operators ''equals'',
183
+ ''contains'' and ''starts_with''."},{"name":"registration_form_id","value":null,"prompt":"string
184
+ - Find all members in a division with the specified registration_form_id."},{"name":"registration_form_line_item_id","value":null,"prompt":"string
185
+ - Find all members in a division who have selected the specified registration_form_line_item_id."},{"name":"registration_form_line_item_option_id","value":null,"prompt":"string
186
+ - Find all members in a division who have selected a given registration_form_line_item_option_id."},{"name":"is_assigned","value":null,"prompt":"true/false
187
+ - For all members in a division that are assigned to a team. Not used if blank."},{"name":"is_activated","value":null,"prompt":"true/false
188
+ - For all members in a division that have a user. Not used if blank."},{"name":"checkout_type","value":null,"prompt":"string
189
+ - Search for a registration checkout type. Valid values are: \"1\" - In Progress,
190
+ \"2\" - Pay Now, \"3\" - Installment Plan, \"4\" - Pay Offline, \"5\" - No
191
+ Fees"},{"name":"signup_status","value":null,"prompt":"string - Search for
192
+ a registration based on it''s signup status. Value values are: \"authorized\"
193
+ - Authorized, \"refunded\" - Refunded, \"failed\" - Failed, \"active\" - Active,
194
+ \"canceled\" - Canceled, \"charged_back\" - Charged Back, \"on_checkout\"
195
+ - On Checkout, \"paid\" - Paid"},{"name":"search_subdivisions","value":null,"prompt":"true/false
196
+ - Search all the subdivisions of the division provided. True by default."},{"name":"batch_invoice_id","value":null,"prompt":"Id
197
+ of batch invoice to search"},{"name":"invoice_status","value":null,"prompt":"string
198
+ - Search for all members based on a selected batch_invoice_id invoice status,
199
+ valid values are: \"open\", \"submitted\", \"pending\", \"paid\", \"canceled\""},{"name":"pending_assignments","value":null,"prompt":"string
200
+ - Search pending assignments for members. \"include\", \"exclude\", \"only\".
201
+ \"exclude\" is the default"},{"name":"page_size","value":null,"prompt":"The
202
+ number of items to return for each page. Sending this parameter with the query
203
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
204
+ number of the page to be returned. This requires that paging be turned on
205
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"set_commissioner_access","href":"http://localhost:3000/members/set_commissioner_access","data":[{"name":"member_id","value":null},{"name":"division_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
122
206
  source_member_ids (array) and a destination_team_id, source members and related
123
207
  member data will be imported to the destination team. Newly created members
124
208
  will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null},{"name":"send_invites","value":null,"prompt":"Whether
125
209
  or not to create and send invitations for each imported member. Valid values
126
- are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"division_search","href":"http://localhost:3000/members/division_search","prompt":"BETA:
127
- (This endpoint subject to change) Searches the division and subdivision for
128
- the members meeting the search criteria.","data":[{"name":"division_id","value":null,"prompt":"Id
129
- of the division and descendants to search"},{"name":"is_unassigned","value":null,"prompt":"true/false
130
- - For all members in a division that aren''t assigned to a team. Not used
131
- if blank."},{"name":"is_activated","value":null,"prompt":"true/false - For
132
- all members in a division that have a user. Not used if blank."}]}],"items":[{"href":"http://localhost:3000/members/2","data":[{"name":"id","value":2},{"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":"Manny"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
133
- is deprecated and will be removed in a future version, use is_address_hidden
134
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
135
- 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":false},{"name":"is_ownership_pending","value":null},{"name":"jersey_number","value":null},{"name":"last_logged_in_at","value":null,"deprecated":true,"prompt":"%{field}
136
- is deprecated and has been removed. Continued use of %{field} is not recommended
137
- it will no longer be stored."},{"name":"last_name","value":"Manager"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":6},{"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=2"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=2"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=2"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=2"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=2"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=2"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=2"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=2"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=2"},{"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=2"},{"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=2"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=2"},{"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=2"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=2"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=2"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=2"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=2"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=2"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=2"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=2"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=2"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/2"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=2"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=2"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=2"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=2"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=2"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=2"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=2"},{"rel":"user","href":"http://localhost:3000/users/6"}],"rel":"member-2"},{"href":"http://localhost:3000/members/3","data":[{"name":"id","value":3},{"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":"Ownie"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
138
- is deprecated and will be removed in a future version, use is_address_hidden
139
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
140
- 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}
141
- is deprecated and has been removed. Continued use of %{field} is not recommended
142
- 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
143
- is deprecated and will be removed in a future version, use is_address_hidden
144
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
145
- 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}
146
- is deprecated and has been removed. Continued use of %{field} is not recommended
147
- 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
148
- is deprecated and will be removed in a future version, use is_address_hidden
149
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
150
- 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}
151
- is deprecated and has been removed. Continued use of %{field} is not recommended
152
- 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
210
+ are either ''true'' or ''false'' and will default to ''false''"}]},{"rel":"bulk_delete","href":"http://localhost:3000/members/bulk_delete","prompt":"Delete
211
+ one or many members.","data":[{"name":"member_id","value":null,"prompt":"The
212
+ id of the member to be deleted, this can either be passed as a comma-delimited
213
+ list of integers or as an array if the post data is JSON."}]},{"rel":"move_member","href":"http://localhost:3000/members/move_member","prompt":"Move
214
+ one or many members to a new division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
215
+ id of the member or members to be moved, this can either be passed as a comma-delimited
216
+ list of integers or as an array if the post data is JSON."},{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"pending","value":null}]},{"rel":"move_pending_member","href":"http://localhost:3000/members/move_pending_member","prompt":"Move
217
+ one or many pending members to their division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
218
+ id of the pending member or pending members to be moved, this can either be
219
+ passed as a comma-delimited list of integers or as an array if the post data
220
+ is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
221
+ or divisions to determine pending members, this can either be passed as a
222
+ comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
223
+ id of the team or teams to determine pending members, this can either be passed
224
+ as a comma-delimited list of integers or as an array if the post data is JSON."}]},{"rel":"delete_pending_member","href":"http://localhost:3000/members/delete_pending_member","prompt":"Delete
225
+ one or many pending members from a division and/or team.","data":[{"name":"member_id","value":null,"prompt":"The
226
+ id of the pending member or pending members to be moved, this can either be
227
+ passed as a comma-delimited list of integers or as an array if the post data
228
+ is JSON."},{"name":"division_id","value":null,"prompt":"The id of the division
229
+ or divisions to determine pending members, this can either be passed as a
230
+ comma-delimited list of integers or as an array if the post data is JSON."},{"name":"team_id","value":null,"prompt":"The
231
+ id of the team or teams to determine pending members, this can either be passed
232
+ as a comma-delimited list of integers or as an array if the post data is JSON."}]}],"items":[{"href":"http://localhost:3000/members/69","data":[{"name":"id","value":69,"type":"String"},{"name":"type","value":"member","type":"String"},{"name":"address_city","value":null,"type":"String"},{"name":"address_state","value":null,"type":"String"},{"name":"address_street1","value":null,"type":"String"},{"name":"address_street2","value":null,"type":"String"},{"name":"address_zip","value":null,"type":"String"},{"name":"birthday","value":"","type":"String"},{"name":"division_id","value":null,"type":"String"},{"name":"first_name","value":"Manny","type":"String"},{"name":"gender","value":null,"type":"String"},{"name":"has_facebook_post_scores_enabled","value":false,"type":"Boolean","deprecated":true,"prompt":"has_facebook_post_scores_enabled
233
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
234
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
153
235
  is deprecated and will be removed in a future version, use is_address_hidden
154
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
155
- 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":true},{"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}
156
- is deprecated and has been removed. Continued use of %{field} is not recommended
157
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":9},{"name":"updated_at","value":"2016-08-11T18:51:24Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:22Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=6"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=6"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=6"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=6"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=6"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=6"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=6"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=6"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=6"},{"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=6"},{"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=6"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=6"},{"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=6"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=6"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=6"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=6"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=6"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=6"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=6"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=6"},{"rel":"member_photo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/roster_full_photos/6/original/926ebbdd-140f-41e9-88fe-1ee19b227104.png"},{"rel":"member_photo_file","href":"http://localhost:3000/member_photo_files/6-1470941482"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=6"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/6"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=6"},{"rel":"member_thumbnail","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/roster_thumb_photos/6/thumb/926ebbdd-140f-41e9-88fe-1ee19b227104.png"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=6"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=6"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=6"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=6"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=6"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=6"},{"rel":"user","href":"http://localhost:3000/users/9"}],"rel":"member-6"},{"href":"http://localhost:3000/members/7","data":[{"name":"id","value":7},{"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":"2000-01-01"},{"name":"first_name","value":"Player"},{"name":"gender","value":"Female"},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
236
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
237
+ 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
238
+ 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}
239
+ 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
240
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
241
+ 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
242
+ is deprecated and has been removed. Continued use of is_invitable is not
243
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
244
+ is deprecated and has been removed. Continued use of is_invited is not recommended
245
+ 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
246
+ is deprecated and has been removed. Continued use of last_logged_in_at is
247
+ 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
248
+ is deprecated and has been removed. Continued use of user_id is not recommended
249
+ 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
250
+ is deprecated and has been removed. Continued use of member_email_addresses
251
+ 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
252
+ is deprecated and has been removed. Continued use of member_phone_numbers
253
+ 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
254
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
255
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
158
256
  is deprecated and will be removed in a future version, use is_address_hidden
159
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
160
- 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":true},{"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":"23"},{"name":"last_logged_in_at","value":null,"deprecated":true,"prompt":"%{field}
161
- is deprecated and has been removed. Continued use of %{field} is not recommended
162
- it will no longer be stored."},{"name":"last_name","value":"Labeled"},{"name":"position","value":"Goalie"},{"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=7"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=7"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=7"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=7"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=7"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=7"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=7"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=7"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=7"},{"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=7"},{"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=7"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=7"},{"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=7"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=7"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=7"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=7"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=7"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=7"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=7"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=7"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=7"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/7"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=7"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=7"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=7"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=7"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=7"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=7"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=7"},{"rel":"user","href":"http://localhost:3000/users/9"}],"rel":"member-7"},{"href":"http://localhost:3000/members/8","data":[{"name":"id","value":8},{"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":"Uninvited
163
- 0"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
257
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
258
+ 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
259
+ 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}
260
+ 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
261
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
262
+ 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
263
+ is deprecated and has been removed. Continued use of is_invitable is not
264
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
265
+ is deprecated and has been removed. Continued use of is_invited is not recommended
266
+ 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
267
+ is deprecated and has been removed. Continued use of last_logged_in_at is
268
+ 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
269
+ is deprecated and has been removed. Continued use of user_id is not recommended
270
+ 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
271
+ is deprecated and has been removed. Continued use of member_email_addresses
272
+ 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
273
+ is deprecated and has been removed. Continued use of member_phone_numbers
274
+ 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
275
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
276
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
164
277
  is deprecated and will be removed in a future version, use is_address_hidden
165
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
166
- 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":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"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}
167
- is deprecated and has been removed. Continued use of %{field} is not recommended
168
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"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=8"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=8"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=8"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=8"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=8"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=8"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=8"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=8"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=8"},{"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=8"},{"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=8"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=8"},{"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=8"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=8"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=8"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=8"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=8"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=8"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=8"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=8"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=8"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/8"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=8"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=8"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=8"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=8"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=8"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=8"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=8"}],"rel":"member-8"},{"href":"http://localhost:3000/members/9","data":[{"name":"id","value":9},{"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":"Uninvited
169
- 1"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
278
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
279
+ 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
280
+ 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}
281
+ 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
282
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
283
+ 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
284
+ is deprecated and has been removed. Continued use of is_invitable is not
285
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
286
+ is deprecated and has been removed. Continued use of is_invited is not recommended
287
+ 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
288
+ is deprecated and has been removed. Continued use of last_logged_in_at is
289
+ 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
290
+ is deprecated and has been removed. Continued use of user_id is not recommended
291
+ 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
292
+ is deprecated and has been removed. Continued use of member_email_addresses
293
+ 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
294
+ is deprecated and has been removed. Continued use of member_phone_numbers
295
+ 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
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
170
298
  is deprecated and will be removed in a future version, use is_address_hidden
171
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
172
- 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":"1b85d2acdc6035c33190557b"},{"name":"invitation_declined","value":null},{"name":"is_activated","value":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"name":"is_invited","value":true},{"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}
173
- is deprecated and has been removed. Continued use of %{field} is not recommended
174
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"name":"updated_at","value":"2016-08-11T16:47:51Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:22Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=9"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=9"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=9"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=9"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=9"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=9"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=9"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=9"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=9"},{"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=9"},{"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=9"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=9"},{"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=9"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=9"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=9"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=9"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=9"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=9"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=9"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=9"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=9"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/9"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=9"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=9"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=9"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=9"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=9"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=9"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=9"}],"rel":"member-9"},{"href":"http://localhost:3000/members/10","data":[{"name":"id","value":10},{"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":"Uninvited
175
- 2"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
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":null,"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":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
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":false,"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":false,"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":"","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
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: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
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=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
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=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
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
176
319
  is deprecated and will be removed in a future version, use is_address_hidden
177
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
178
- 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":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"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}
179
- is deprecated and has been removed. Continued use of %{field} is not recommended
180
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"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=10"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=10"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=10"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=10"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=10"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=10"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=10"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=10"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=10"},{"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=10"},{"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=10"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=10"},{"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=10"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=10"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=10"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=10"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=10"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=10"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=10"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=10"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=10"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/10"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=10"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=10"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=10"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=10"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=10"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=10"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=10"}],"rel":"member-10"},{"href":"http://localhost:3000/members/11","data":[{"name":"id","value":11},{"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":"Invited
181
- 0"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
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":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
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":true,"type":"Boolean"},{"name":"is_emailable","value":true,"type":"Boolean"},{"name":"is_invitable","value":false,"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":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
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":7,"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: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
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=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
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=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
338
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
339
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
182
340
  is deprecated and will be removed in a future version, use is_address_hidden
183
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
184
- 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":"r69f215d1a1f3c7246782dea7"},{"name":"invitation_declined","value":null},{"name":"is_activated","value":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"name":"is_invited","value":true},{"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}
185
- is deprecated and has been removed. Continued use of %{field} is not recommended
186
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"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=11"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=11"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=11"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=11"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=11"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=11"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=11"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=11"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=11"},{"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=11"},{"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=11"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=11"},{"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=11"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=11"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=11"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=11"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=11"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=11"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=11"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=11"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=11"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/11"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=11"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=11"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=11"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=11"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=11"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=11"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=11"}],"rel":"member-11"},{"href":"http://localhost:3000/members/12","data":[{"name":"id","value":12},{"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":"Invited
187
- 1"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
341
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
342
+ 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
343
+ 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}
344
+ 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
345
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
346
+ 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
347
+ is deprecated and has been removed. Continued use of is_invitable is not
348
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
349
+ is deprecated and has been removed. Continued use of is_invited is not recommended
350
+ 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
351
+ is deprecated and has been removed. Continued use of last_logged_in_at is
352
+ 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
353
+ is deprecated and has been removed. Continued use of user_id is not recommended
354
+ 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
355
+ is deprecated and has been removed. Continued use of member_email_addresses
356
+ 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
357
+ is deprecated and has been removed. Continued use of member_phone_numbers
358
+ 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
359
+ 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
360
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
361
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
188
362
  is deprecated and will be removed in a future version, use is_address_hidden
189
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"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},{"name":"is_commissioner","value":false},{"name":"invitation_code","value":"rd62225342e03fd1bf6ce039b"},{"name":"invitation_declined","value":null},{"name":"is_activated","value":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"name":"is_invited","value":true},{"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}
191
- is deprecated and has been removed. Continued use of %{field} is not recommended
192
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:22Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=12"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=12"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=12"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=12"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=12"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=12"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=12"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=12"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=12"},{"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=12"},{"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=12"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=12"},{"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=12"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=12"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=12"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=12"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=12"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=12"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=12"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=12"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=12"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/12"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=12"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=12"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=12"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=12"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=12"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=12"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=12"}],"rel":"member-12"},{"href":"http://localhost:3000/members/13","data":[{"name":"id","value":13},{"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":"Invited
193
- 2"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
363
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
364
+ 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
365
+ 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}
366
+ 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
367
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
368
+ 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
369
+ is deprecated and has been removed. Continued use of is_invitable is not
370
+ recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
371
+ is deprecated and has been removed. Continued use of is_invited is not recommended
372
+ 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
373
+ is deprecated and has been removed. Continued use of last_logged_in_at is
374
+ 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
375
+ is deprecated and has been removed. Continued use of user_id is not recommended
376
+ 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
377
+ is deprecated and has been removed. Continued use of member_email_addresses
378
+ 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
379
+ is deprecated and has been removed. Continued use of member_phone_numbers
380
+ 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
381
+ 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
382
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
383
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
194
384
  is deprecated and will be removed in a future version, use is_address_hidden
195
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
196
- 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":"r778fba98682b251f6a9e5da9"},{"name":"invitation_declined","value":null},{"name":"is_activated","value":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"name":"is_invited","value":true},{"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}
197
- is deprecated and has been removed. Continued use of %{field} is not recommended
198
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=13"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=13"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=13"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=13"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=13"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=13"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=13"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=13"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=13"},{"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=13"},{"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=13"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=13"},{"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=13"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=13"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=13"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=13"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=13"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=13"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=13"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=13"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=13"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/13"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=13"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=13"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=13"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=13"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=13"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=13"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=13"}],"rel":"member-13"},{"href":"http://localhost:3000/members/14","data":[{"name":"id","value":14},{"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":"FB
199
- User"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":true},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
385
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
386
+ 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
387
+ 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}
388
+ 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
389
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
390
+ 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
391
+ is deprecated and has been removed. Continued use of is_invitable is not
392
+ recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
393
+ is deprecated and has been removed. Continued use of is_invited is not recommended
394
+ 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
395
+ is deprecated and has been removed. Continued use of last_logged_in_at is
396
+ 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
397
+ is deprecated and has been removed. Continued use of user_id is not recommended
398
+ 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
399
+ is deprecated and has been removed. Continued use of member_email_addresses
400
+ 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
401
+ is deprecated and has been removed. Continued use of member_phone_numbers
402
+ 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
403
+ 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
404
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
405
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
200
406
  is deprecated and will be removed in a future version, use is_address_hidden
201
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
202
- 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}
203
- is deprecated and has been removed. Continued use of %{field} is not recommended
204
- it will no longer be stored."},{"name":"last_name","value":"Scoreposter"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":2},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=14"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=14"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=14"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=14"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=14"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=14"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=14"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=14"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=14"},{"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=14"},{"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=14"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=14"},{"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=14"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=14"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=14"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=14"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=14"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=14"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=14"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=14"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=14"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/14"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=14"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=14"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=14"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=14"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=14"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=14"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=14"},{"rel":"user","href":"http://localhost:3000/users/2"}],"rel":"member-14"},{"href":"http://localhost:3000/members/15","data":[{"name":"id","value":15},{"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":"FB
205
- User"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":true},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
407
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
408
+ 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
409
+ 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}
410
+ 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
411
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
412
+ 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
413
+ is deprecated and has been removed. Continued use of is_invitable is not
414
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
415
+ is deprecated and has been removed. Continued use of is_invited is not recommended
416
+ 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
417
+ is deprecated and has been removed. Continued use of last_logged_in_at is
418
+ 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
419
+ is deprecated and has been removed. Continued use of user_id is not recommended
420
+ 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
421
+ is deprecated and has been removed. Continued use of member_email_addresses
422
+ 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
423
+ is deprecated and has been removed. Continued use of member_phone_numbers
424
+ 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
425
+ 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
426
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
427
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
206
428
  is deprecated and will be removed in a future version, use is_address_hidden
207
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
208
- 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}
209
- is deprecated and has been removed. Continued use of %{field} is not recommended
210
- it will no longer be stored."},{"name":"last_name","value":"Wins ONLY Scoreposter"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":2},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=15"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=15"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=15"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=15"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=15"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=15"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=15"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=15"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=15"},{"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=15"},{"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=15"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=15"},{"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=15"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=15"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=15"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=15"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=15"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=15"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=15"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=15"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=15"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/15"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=15"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=15"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=15"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=15"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=15"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=15"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=15"},{"rel":"user","href":"http://localhost:3000/users/2"}],"rel":"member-15"},{"href":"http://localhost:3000/members/16","data":[{"name":"id","value":16},{"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":"FB
211
- User"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
429
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
430
+ 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
431
+ 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}
432
+ 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
433
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
434
+ 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
435
+ is deprecated and has been removed. Continued use of is_invitable is not
436
+ recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
437
+ is deprecated and has been removed. Continued use of is_invited is not recommended
438
+ 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
439
+ is deprecated and has been removed. Continued use of last_logged_in_at is
440
+ 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
441
+ is deprecated and has been removed. Continued use of user_id is not recommended
442
+ 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
443
+ is deprecated and has been removed. Continued use of member_email_addresses
444
+ 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
445
+ is deprecated and has been removed. Continued use of member_phone_numbers
446
+ 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
447
+ 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
448
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
449
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
212
450
  is deprecated and will be removed in a future version, use is_address_hidden
213
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
214
- 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}
215
- is deprecated and has been removed. Continued use of %{field} is not recommended
216
- it will no longer be stored."},{"name":"last_name","value":"NOT Scoreposter"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":2},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=16"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=16"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=16"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=16"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=16"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=16"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=16"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=16"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=16"},{"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=16"},{"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=16"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=16"},{"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=16"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=16"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=16"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=16"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=16"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=16"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=16"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=16"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=16"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/16"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=16"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=16"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=16"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=16"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=16"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=16"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=16"},{"rel":"user","href":"http://localhost:3000/users/2"}],"rel":"member-16"},{"href":"http://localhost:3000/members/17","data":[{"name":"id","value":17},{"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":"Non"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
451
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
452
+ 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
453
+ 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}
454
+ 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
455
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
456
+ 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
457
+ is deprecated and has been removed. Continued use of is_invitable is not
458
+ recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
459
+ is deprecated and has been removed. Continued use of is_invited is not recommended
460
+ 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
461
+ is deprecated and has been removed. Continued use of last_logged_in_at is
462
+ 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
463
+ is deprecated and has been removed. Continued use of user_id is not recommended
464
+ 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
465
+ is deprecated and has been removed. Continued use of member_email_addresses
466
+ 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
467
+ is deprecated and has been removed. Continued use of member_phone_numbers
468
+ 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
469
+ 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
470
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
471
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
217
472
  is deprecated and will be removed in a future version, use is_address_hidden
218
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
219
- 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":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":true},{"name":"is_invitable","value":true},{"name":"is_invited","value":false},{"name":"is_manager","value":false},{"name":"is_non_player","value":true},{"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}
220
- is deprecated and has been removed. Continued use of %{field} is not recommended
221
- it will no longer be stored."},{"name":"last_name","value":"Player"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=17"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=17"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=17"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=17"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=17"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=17"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=17"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=17"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=17"},{"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=17"},{"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=17"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=17"},{"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=17"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=17"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=17"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=17"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=17"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=17"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=17"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=17"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=17"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/17"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=17"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=17"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=17"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=17"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=17"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=17"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=17"}],"rel":"member-17"},{"href":"http://localhost:3000/members/18","data":[{"name":"id","value":18},{"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":"No"},{"name":"gender","value":null},{"name":"has_facebook_post_scores_enabled","value":false},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
473
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
474
+ 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
475
+ 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}
476
+ 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
477
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
478
+ 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
479
+ is deprecated and has been removed. Continued use of is_invitable is not
480
+ recommended it will no longer be stored."},{"name":"is_invited","value":true,"type":"Boolean","deprecated":true,"prompt":"is_invited
481
+ is deprecated and has been removed. Continued use of is_invited is not recommended
482
+ 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
483
+ is deprecated and has been removed. Continued use of last_logged_in_at is
484
+ 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
485
+ is deprecated and has been removed. Continued use of user_id is not recommended
486
+ 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
487
+ is deprecated and has been removed. Continued use of member_email_addresses
488
+ 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
489
+ is deprecated and has been removed. Continued use of member_phone_numbers
490
+ 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
491
+ is deprecated and has been removed. Continued use of has_facebook_post_scores_enabled
492
+ is not recommended it will no longer be stored."},{"name":"hide_address","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_address
222
493
  is deprecated and will be removed in a future version, use is_address_hidden
223
- instead."},{"name":"is_address_hidden","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
224
- 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":false},{"name":"is_pushable","value":false},{"name":"is_alertable","value":false},{"name":"is_emailable","value":false},{"name":"is_invitable","value":true},{"name":"is_invited","value":false},{"name":"is_manager","value":false},{"name":"is_non_player","value":true},{"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}
225
- is deprecated and has been removed. Continued use of %{field} is not recommended
226
- it will no longer be stored."},{"name":"last_name","value":"Email"},{"name":"position","value":null},{"name":"team_id","value":1},{"name":"user_id","value":null},{"name":"updated_at","value":"2016-08-10T23:47:23Z","type":"DateTime"},{"name":"created_at","value":"2016-08-10T23:47:23Z","type":"DateTime"}],"links":[{"rel":"assignments","href":"http://localhost:3000/assignments/search?member_id=18"},{"rel":"availabilities","href":"http://localhost:3000/availabilities/search?member_id=18"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments/search?member_id=18"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails/search?member_id=18"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts/search?member_id=18"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses/search?member_id=18"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers/search?member_id=18"},{"rel":"contacts","href":"http://localhost:3000/contacts/search?member_id=18"},{"rel":"custom_data","href":"http://localhost:3000/custom_data/search?member_id=18"},{"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=18"},{"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=18"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions/search?member_id=18"},{"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=18"},{"rel":"member_assignments","href":"http://localhost:3000/member_assignments/search?member_id=18"},{"rel":"member_balances","href":"http://localhost:3000/member_balances/search?member_id=18"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses/search?member_id=18"},{"rel":"member_files","href":"http://localhost:3000/member_files/search?member_id=18"},{"rel":"member_links","href":"http://localhost:3000/member_links/search?member_id=18"},{"rel":"member_payments","href":"http://localhost:3000/member_payments/search?member_id=18"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers/search?member_id=18"},{"rel":"member_photos","href":"http://localhost:3000/member_photos/search?member_id=18"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences/18"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics/search?member_id=18"},{"rel":"message_data","href":"http://localhost:3000/message_data/search?member_id=18"},{"rel":"messages","href":"http://localhost:3000/messages/search?member_id=18"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data/search?member_id=18"},{"rel":"team","href":"http://localhost:3000/teams/1"},{"rel":"team_media","href":"http://localhost:3000/team_media/search?member_id=18"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments/search?member_id=18"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses/search?member_id=18"}],"rel":"member-18"}]}}'
494
+ instead."},{"name":"is_address_hidden","value":null,"type":"Boolean"},{"name":"hide_age","value":null,"type":"Boolean","deprecated":true,"prompt":"hide_age
495
+ 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
496
+ 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}
497
+ 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
498
+ is deprecated and has been removed. Continued use of is_selectable_for_chat
499
+ 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
500
+ is deprecated and has been removed. Continued use of is_invitable is not
501
+ recommended it will no longer be stored."},{"name":"is_invited","value":false,"type":"Boolean","deprecated":true,"prompt":"is_invited
502
+ is deprecated and has been removed. Continued use of is_invited is not recommended
503
+ 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
504
+ is deprecated and has been removed. Continued use of last_logged_in_at is
505
+ 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
506
+ is deprecated and has been removed. Continued use of user_id is not recommended
507
+ 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
508
+ is deprecated and has been removed. Continued use of member_email_addresses
509
+ 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
510
+ is deprecated and has been removed. Continued use of member_phone_numbers
511
+ 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"}]}}'
227
512
  http_version: '1.1'
228
513
  adapter_metadata:
229
- effective_url: http://localhost:3000/members/search?team_id=1&hmac_client_id=classic&hmac_nonce=e8aa4bb1-73bd-409c-8f87-c54d04d3d5ef&hmac_timestamp=1470941485
230
- recorded_at: Thu, 11 Aug 2016 18:51:26 GMT
231
- recorded_with: VCR 2.9.3
514
+ effective_url: http://localhost:3000/members/search?team_id=1&hmac_client_id=classic_service&hmac_nonce=653f52da-c9be-4523-99f9-73e3f5e45c28&hmac_timestamp=1590177503
515
+ recorded_at: Fri, 22 May 2020 19:58:24 GMT
516
+ recorded_with: VCR 5.1.0