ruby-trello 2.3.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/README.md +13 -2
 - data/lib/trello.rb +13 -7
 - data/lib/trello/action.rb +27 -21
 - data/lib/trello/attachment.rb +40 -27
 - data/lib/trello/basic_data.rb +104 -9
 - data/lib/trello/board.rb +88 -102
 - data/lib/trello/card.rb +34 -235
 - data/lib/trello/checklist.rb +17 -71
 - data/lib/trello/comment.rb +32 -22
 - data/lib/trello/cover_image.rb +20 -0
 - data/lib/trello/custom_field.rb +31 -84
 - data/lib/trello/custom_field_item.rb +36 -58
 - data/lib/trello/custom_field_option.rb +40 -13
 - data/lib/trello/item.rb +27 -16
 - data/lib/trello/item_state.rb +7 -15
 - data/lib/trello/json_utils.rb +1 -1
 - data/lib/trello/label.rb +14 -101
 - data/lib/trello/label_name.rb +22 -25
 - data/lib/trello/list.rb +31 -44
 - data/lib/trello/member.rb +77 -32
 - data/lib/trello/notification.rb +27 -20
 - data/lib/trello/organization.rb +53 -25
 - data/lib/trello/plugin_datum.rb +11 -16
 - data/lib/trello/schema.rb +31 -0
 - data/lib/trello/schema/attribute/base.rb +79 -0
 - data/lib/trello/schema/attribute/board_pref.rb +45 -0
 - data/lib/trello/schema/attribute/custom_field_display.rb +45 -0
 - data/lib/trello/schema/attribute/default.rb +45 -0
 - data/lib/trello/schema/attribute_builder.rb +42 -0
 - data/lib/trello/schema/attribute_registration.rb +47 -0
 - data/lib/trello/schema/serializer/default.rb +17 -0
 - data/lib/trello/schema/serializer/labels.rb +23 -0
 - data/lib/trello/schema/serializer/time.rb +25 -0
 - data/lib/trello/schema/serializer/webhooks.rb +25 -0
 - data/lib/trello/token.rb +15 -12
 - data/lib/trello/webhook.rb +18 -71
 - data/spec/action_spec.rb +1 -2
 - data/spec/board_spec.rb +43 -103
 - data/spec/card_spec.rb +51 -50
 - data/spec/cassettes/action_find_with_id_and_get_all_fields.yml +104 -0
 - data/spec/cassettes/board_find_with_id_and_get_all_fields.yml +96 -0
 - data/spec/cassettes/board_find_with_id_and_get_specific_fields.yml +96 -0
 - data/spec/cassettes/can_add_a_member_to_a_board.yml +191 -0
 - data/spec/cassettes/can_arvhice_all_cards_of_list.yml +397 -0
 - data/spec/cassettes/can_get_actions_of_board.yml +188 -0
 - data/spec/cassettes/can_get_actions_of_list.yml +202 -0
 - data/spec/cassettes/can_get_actions_of_members.yml +199 -0
 - data/spec/cassettes/can_get_actions_of_organization.yml +201 -0
 - data/spec/cassettes/can_get_boards_of_custom_field.yml +198 -0
 - data/spec/cassettes/can_get_boards_of_label.yml +197 -0
 - data/spec/cassettes/can_get_boards_of_organization.yml +207 -0
 - data/spec/cassettes/can_get_cards_of_board.yml +193 -0
 - data/spec/cassettes/can_get_cards_of_list.yml +201 -0
 - data/spec/cassettes/can_get_cards_of_member.yml +204 -0
 - data/spec/cassettes/can_get_checklists_of_board.yml +187 -0
 - data/spec/cassettes/can_get_custom_field_options_of_custom_field.yml +197 -0
 - data/spec/cassettes/can_get_custom_fields_of_board.yml +187 -0
 - data/spec/cassettes/can_get_label_names_of_board.yml +187 -0
 - data/spec/cassettes/can_get_labels_of_board.yml +187 -0
 - data/spec/cassettes/can_get_lists_of_board.yml +187 -0
 - data/spec/cassettes/can_get_members_of_board.yml +188 -0
 - data/spec/cassettes/can_get_members_of_organization.yml +200 -0
 - data/spec/cassettes/can_get_notifications_of_member.yml +199 -0
 - data/spec/cassettes/can_get_organization_of_board.yml +189 -0
 - data/spec/cassettes/can_get_organizations_of_member.yml +203 -0
 - data/spec/cassettes/can_get_plugin_data_of_board.yml +187 -0
 - data/spec/cassettes/can_move_all_cards_to_another_list.yml +886 -0
 - data/spec/cassettes/can_success_create_a_board.yml +98 -0
 - data/spec/cassettes/can_success_create_a_board_with_full_parameters.yml +97 -0
 - data/spec/cassettes/can_success_create_a_board_without_clone_from_other.yml +98 -0
 - data/spec/cassettes/can_success_create_a_card_when_due_is_datetime.yml +98 -0
 - data/spec/cassettes/can_success_create_a_card_when_due_is_time.yml +98 -0
 - data/spec/cassettes/can_success_create_a_checklist.yml +102 -0
 - data/spec/cassettes/can_success_create_a_custom_field.yml +102 -0
 - data/spec/cassettes/can_success_create_a_custom_field_option.yml +102 -0
 - data/spec/cassettes/can_success_create_a_label.yml +102 -0
 - data/spec/cassettes/can_success_create_a_list.yml +102 -0
 - data/spec/cassettes/can_success_create_a_list_with_full_parameters.yml +102 -0
 - data/spec/cassettes/can_success_create_a_organization.yml +104 -0
 - data/spec/cassettes/can_success_create_a_webhook.yml +102 -0
 - data/spec/cassettes/can_success_delete_a_custom_field_option.yml +389 -0
 - data/spec/cassettes/can_success_delete_checklist.yml +284 -0
 - data/spec/cassettes/can_success_get_card_of_board_by_card_id.yml +188 -0
 - data/spec/cassettes/can_success_remove_member_from_board.yml +186 -0
 - data/spec/cassettes/can_success_return_all_boards_of_current_user.yml +195 -0
 - data/spec/cassettes/can_success_upate_a_board.yml +191 -0
 - data/spec/cassettes/can_success_upate_a_list.yml +296 -0
 - data/spec/cassettes/can_success_update_bong_a_board.yml +39 -39
 - data/spec/cassettes/can_success_update_bong_a_board_with_specific_fields.yml +284 -0
 - data/spec/cassettes/can_success_update_bong_a_checklist_with_specific_fields.yml +296 -0
 - data/spec/cassettes/can_success_update_bong_a_custom_field.yml +200 -0
 - data/spec/cassettes/can_success_update_bong_a_label.yml +200 -0
 - data/spec/cassettes/can_success_update_bong_a_list.yml +199 -0
 - data/spec/cassettes/can_success_update_bong_a_list_with_specific_fields.yml +296 -0
 - data/spec/cassettes/can_success_update_bong_a_organization.yml +203 -0
 - data/spec/cassettes/can_success_update_bong_a_webhook.yml +296 -0
 - data/spec/cassettes/checklist_can_add_an_item.yml +296 -0
 - data/spec/cassettes/checklist_can_update_the_item_state.yml +296 -0
 - data/spec/cassettes/checklist_find_with_id_and_get_all_fields.yml +100 -0
 - data/spec/cassettes/custom_field_find_with_id_and_get_all_fields.yml +100 -0
 - data/spec/cassettes/custom_field_find_with_id_and_get_specific_fields.yml +100 -0
 - data/spec/cassettes/custom_field_item_save_1.yml +1 -1
 - data/spec/cassettes/custom_field_item_save_2.yml +1 -1
 - data/spec/cassettes/custom_field_option_find_with_id.yml +100 -0
 - data/spec/cassettes/get_board_of_list.yml +197 -0
 - data/spec/cassettes/get_boards_of_member.yml +207 -0
 - data/spec/cassettes/label_delete.yml +285 -0
 - data/spec/cassettes/label_find_with_id.yml +100 -0
 - data/spec/cassettes/list_find_with_id_and_get_all_fields.yml +100 -0
 - data/spec/cassettes/list_find_with_id_and_get_specific_fields.yml +100 -0
 - data/spec/cassettes/member_find_with_id_and_get_all_fields.yml +101 -0
 - data/spec/cassettes/member_find_with_id_and_get_specific_fields.yml +100 -0
 - data/spec/cassettes/notification_find_with_id.yml +103 -0
 - data/spec/cassettes/organization_find_with_id_and_get_all_fields.yml +102 -0
 - data/spec/cassettes/organization_find_with_id_and_get_specific_fields.yml +100 -0
 - data/spec/cassettes/token_find_with_token_string.yml +100 -0
 - data/spec/cassettes/webhook_delete.yml +286 -0
 - data/spec/cassettes/webhook_find_with_id.yml +100 -0
 - data/spec/checklist_spec.rb +27 -43
 - data/spec/custom_field_item_spec.rb +2 -2
 - data/spec/custom_field_option_spec.rb +2 -2
 - data/spec/custom_field_spec.rb +25 -13
 - data/spec/integration/action/find_spec.rb +23 -0
 - data/spec/integration/basic_data/many_spec.rb +4 -0
 - data/spec/integration/basic_data/schema_spec.rb +156 -0
 - data/spec/integration/board/add_member_spec.rb +21 -0
 - data/spec/integration/board/all_spec.rb +20 -0
 - data/spec/integration/board/associations/actions_spec.rb +18 -0
 - data/spec/integration/board/associations/cards_spec.rb +18 -0
 - data/spec/integration/board/associations/checklists_spec.rb +18 -0
 - data/spec/integration/board/associations/custom_fields_spec.rb +18 -0
 - data/spec/integration/board/associations/label_names_spec.rb +17 -0
 - data/spec/integration/board/associations/labels_spec.rb +18 -0
 - data/spec/integration/board/associations/lists_spec.rb +18 -0
 - data/spec/integration/board/associations/members_spec.rb +18 -0
 - data/spec/integration/board/associations/organization_spec.rb +19 -0
 - data/spec/integration/board/associations/plugin_data_spec.rb +18 -0
 - data/spec/integration/board/create_spec.rb +95 -0
 - data/spec/integration/board/find_card_spec.rb +18 -0
 - data/spec/integration/board/find_spec.rb +42 -0
 - data/spec/integration/board/remove_member_spec.rb +21 -0
 - data/spec/integration/board/save_spec.rb +37 -0
 - data/spec/integration/board/update!_spec.rb +33 -2
 - data/spec/integration/card/associations/plugin_data_spec.rb +1 -1
 - data/spec/integration/card/create_spec.rb +36 -2
 - data/spec/integration/card/find_spec.rb +1 -1
 - data/spec/integration/card/save_spec.rb +2 -2
 - data/spec/integration/checklist/add_item_spec.rb +20 -0
 - data/spec/integration/checklist/create_spec.rb +23 -0
 - data/spec/integration/checklist/delete_spec.rb +17 -0
 - data/spec/integration/checklist/find_spec.rb +22 -0
 - data/spec/integration/checklist/update!_spec.rb +21 -0
 - data/spec/integration/checklist/update_item_state_spec.rb +20 -0
 - data/spec/integration/custom_field/association/board_spec.rb +18 -0
 - data/spec/integration/custom_field/association/custom_field_options_spec.rb +18 -0
 - data/spec/integration/custom_field/create_spec.rb +29 -0
 - data/spec/integration/custom_field/find_spec.rb +41 -0
 - data/spec/integration/custom_field/update!_spec.rb +25 -0
 - data/spec/integration/custom_field_option/create_spec.rb +23 -0
 - data/spec/integration/custom_field_option/delete_spec.rb +19 -0
 - data/spec/integration/custom_field_option/find_spec.rb +21 -0
 - data/spec/integration/label/association/board_spec.rb +18 -0
 - data/spec/integration/label/create_spec.rb +23 -0
 - data/spec/integration/label/delete_spec.rb +21 -0
 - data/spec/integration/label/find_spec.rb +20 -0
 - data/spec/integration/label/update!_spec.rb +25 -0
 - data/spec/integration/list/archive_all_cards_spec.rb +20 -0
 - data/spec/integration/list/associations/actions_spec.rb +18 -0
 - data/spec/integration/list/associations/board_spec.rb +18 -0
 - data/spec/integration/list/associations/cards_spec.rb +18 -0
 - data/spec/integration/list/create_spec.rb +44 -0
 - data/spec/integration/list/find_spec.rb +37 -0
 - data/spec/integration/list/move_all_cards_spec.rb +31 -0
 - data/spec/integration/list/save_spec.rb +40 -0
 - data/spec/integration/list/update!_spec.rb +43 -0
 - data/spec/integration/member/associations/actions_spec.rb +17 -0
 - data/spec/integration/member/associations/boards_spec.rb +18 -0
 - data/spec/integration/member/associations/cards_spec.rb +18 -0
 - data/spec/integration/member/associations/notifications_spec.rb +18 -0
 - data/spec/integration/member/associations/organizations_spec.rb +18 -0
 - data/spec/integration/member/find_spec.rb +39 -0
 - data/spec/integration/member/update!_spec.rb +18 -0
 - data/spec/integration/notification/find_spec.rb +27 -0
 - data/spec/integration/organization/associations/actions_spec.rb +18 -0
 - data/spec/integration/organization/associations/boards_spec.rb +18 -0
 - data/spec/integration/organization/associations/members_spec.rb +18 -0
 - data/spec/integration/organization/create_spec.rb +23 -0
 - data/spec/integration/organization/find_spec.rb +37 -0
 - data/spec/integration/organization/update!_spec.rb +28 -0
 - data/spec/integration/token/find_spec.rb +24 -0
 - data/spec/integration/webhook/create_spec.rb +27 -0
 - data/spec/integration/webhook/delete_spec.rb +21 -0
 - data/spec/integration/webhook/find_spec.rb +22 -0
 - data/spec/integration/webhook/update!_spec.rb +24 -0
 - data/spec/item_spec.rb +2 -2
 - data/spec/label_spec.rb +31 -33
 - data/spec/list_spec.rb +32 -14
 - data/spec/notification_spec.rb +3 -3
 - data/spec/organization_spec.rb +6 -5
 - data/spec/spec_helper.rb +22 -14
 - data/spec/token_spec.rb +10 -11
 - data/spec/unit/trello/basic_data_spec.rb +67 -8
 - data/spec/unit/trello/board/new_spec.rb +370 -0
 - data/spec/unit/trello/board/save_spec.rb +49 -0
 - data/spec/unit/trello/board/update_fields_spec.rb +129 -0
 - data/spec/unit/trello/board/update_spec.rb +197 -0
 - data/spec/unit/trello/member/new_spec.rb +62 -0
 - data/spec/unit/trello/member/update_fields_spec.rb +80 -0
 - data/spec/unit/trello/schema/attribute/base_spec.rb +349 -0
 - data/spec/unit/trello/schema/attribute/board_pref_spec.rb +208 -0
 - data/spec/unit/trello/schema/attribute/default_spec.rb +236 -0
 - data/spec/unit/trello/schema/attribute_builder_spec.rb +55 -0
 - data/spec/unit/trello/schema/attribute_registration_spec.rb +59 -0
 - data/spec/unit/trello/schema/serializer/default_spec.rb +19 -0
 - data/spec/unit/trello/schema/serializer/time_spec.rb +39 -0
 - data/spec/unit/trello/schema_spec.rb +25 -0
 - data/spec/webhook_spec.rb +23 -7
 - metadata +422 -102
 - data/lib/trello/register_attributes.rb +0 -54
 - data/spec/integration/basic_data/register_attributes_spec.rb +0 -75
 
| 
         @@ -0,0 +1,100 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/customFields/5f60e443555b8432d959ae94?fields=name,type&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 29 
     | 
    
         
            +
                  X-Permitted-Cross-Domain-Policies:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - none
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 39 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - 1.2224.0
         
     | 
| 
      
 43 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Fri, 18 Sep 2020 16:32:31 GMT; Secure
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 51 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 53 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 54 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 55 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '298'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '98'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - '198'
         
     | 
| 
      
 74 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - '1600187551425'
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 78 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - Tue, 15 Sep 2020 16:32:31 GMT
         
     | 
| 
      
 80 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - '90'
         
     | 
| 
      
 82 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 84 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 85 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 86 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 87 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 89 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 91 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 93 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 95 
     | 
    
         
            +
                body:
         
     | 
| 
      
 96 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 97 
     | 
    
         
            +
                  string: '{"id":"5f60e443555b8432d959ae94","name":"Finish","type":"checkbox"}'
         
     | 
| 
      
 98 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 99 
     | 
    
         
            +
              recorded_at: Tue, 15 Sep 2020 16:32:31 GMT
         
     | 
| 
      
 100 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     | 
| 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: put
         
     | 
| 
       5 
     | 
    
         
            -
                uri: https://api.trello.com/1/ 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/cards/5e679be5d53dfa748f41d775/customField/5e68e8e87c16bf75894df21a/item?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: value[text]=cool
         
     | 
| 
         @@ -186,7 +186,7 @@ http_interactions: 
     | 
|
| 
       186 
186 
     | 
    
         
             
              recorded_at: Wed, 11 Mar 2020 15:04:10 GMT
         
     | 
| 
       187 
187 
     | 
    
         
             
            - request:
         
     | 
| 
       188 
188 
     | 
    
         
             
                method: put
         
     | 
| 
       189 
     | 
    
         
            -
                uri: https://api.trello.com/1/ 
     | 
| 
      
 189 
     | 
    
         
            +
                uri: https://api.trello.com/1/cards/5e679be5d53dfa748f41d775/customField/5e68e8e87c16bf75894df21a/item?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
       190 
190 
     | 
    
         
             
                body:
         
     | 
| 
       191 
191 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       192 
192 
     | 
    
         
             
                  string: value[text]=nice
         
     | 
| 
         @@ -0,0 +1,100 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/customFields/5fa7589441b04c2cf1fc773a/options/5fa7589441b04c2cf1fc773b?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 29 
     | 
    
         
            +
                  X-Permitted-Cross-Domain-Policies:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - none
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 39 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - 1.2278.0
         
     | 
| 
      
 43 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Wed, 11 Nov 2020 06:09:44 GMT; Secure
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 51 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 53 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 54 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 55 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '299'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '99'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - '199'
         
     | 
| 
      
 74 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - '1604815784798'
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 78 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - Sun, 08 Nov 2020 06:09:44 GMT
         
     | 
| 
      
 80 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - '79'
         
     | 
| 
      
 82 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 84 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 85 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 86 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 87 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 89 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 91 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 93 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 95 
     | 
    
         
            +
                body:
         
     | 
| 
      
 96 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 97 
     | 
    
         
            +
                  string: '{"id":"5fa7589441b04c2cf1fc773b","idCustomField":"5fa7589441b04c2cf1fc773a","value":{"text":"Initial"},"color":"none","pos":19456}'
         
     | 
| 
      
 98 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 99 
     | 
    
         
            +
              recorded_at: Sun, 08 Nov 2020 06:09:44 GMT
         
     | 
| 
      
 100 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     | 
| 
         @@ -0,0 +1,197 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/lists/5f52526ebda8ea4a96445dbf?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 29 
     | 
    
         
            +
                  X-Permitted-Cross-Domain-Policies:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - none
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 39 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - 1.2213.0
         
     | 
| 
      
 43 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:37:31 GMT; Secure
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 51 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 53 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 54 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 55 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '299'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '99'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - '199'
         
     | 
| 
      
 74 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - '1599233851763'
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 78 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - Fri, 04 Sep 2020 15:37:31 GMT
         
     | 
| 
      
 80 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - '92'
         
     | 
| 
      
 82 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 84 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 85 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 86 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 87 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 89 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 91 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 93 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 95 
     | 
    
         
            +
                body:
         
     | 
| 
      
 96 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 97 
     | 
    
         
            +
                  string: '{"id":"5f52526ebda8ea4a96445dbf","name":"L4 - Changed","closed":false,"pos":16383.75,"idBoard":"5e94eaf386374970d06e4c89"}'
         
     | 
| 
      
 98 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 99 
     | 
    
         
            +
              recorded_at: Fri, 04 Sep 2020 15:37:31 GMT
         
     | 
| 
      
 100 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 101 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 102 
     | 
    
         
            +
                uri: https://api.trello.com/1/boards/5e94eaf386374970d06e4c89?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 103 
     | 
    
         
            +
                body:
         
     | 
| 
      
 104 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 105 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 106 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 107 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 108 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 109 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 110 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 111 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 112 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 113 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 114 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 115 
     | 
    
         
            +
              response:
         
     | 
| 
      
 116 
     | 
    
         
            +
                status:
         
     | 
| 
      
 117 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 118 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 119 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 120 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 121 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 122 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 123 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 124 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 125 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 126 
     | 
    
         
            +
                  X-Permitted-Cross-Domain-Policies:
         
     | 
| 
      
 127 
     | 
    
         
            +
                  - none
         
     | 
| 
      
 128 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 129 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 130 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 131 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 132 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 133 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 134 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 135 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 136 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 137 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 138 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 139 
     | 
    
         
            +
                  - 1.2213.0
         
     | 
| 
      
 140 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 141 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 142 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 143 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:37:32 GMT; Secure
         
     | 
| 
      
 144 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 145 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 146 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 147 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 148 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 149 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 150 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 151 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 152 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 153 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 154 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 155 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 156 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 157 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 158 
     | 
    
         
            +
                  - '298'
         
     | 
| 
      
 159 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 160 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 161 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 162 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 163 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 164 
     | 
    
         
            +
                  - '98'
         
     | 
| 
      
 165 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 166 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 167 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 168 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 169 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 170 
     | 
    
         
            +
                  - '198'
         
     | 
| 
      
 171 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 172 
     | 
    
         
            +
                  - '1599233852470'
         
     | 
| 
      
 173 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 174 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 175 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 176 
     | 
    
         
            +
                  - Fri, 04 Sep 2020 15:37:32 GMT
         
     | 
| 
      
 177 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 178 
     | 
    
         
            +
                  - '93'
         
     | 
| 
      
 179 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 180 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 181 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 182 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 183 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 184 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 185 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 186 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 187 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 188 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 189 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 190 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 191 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 192 
     | 
    
         
            +
                body:
         
     | 
| 
      
 193 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 194 
     | 
    
         
            +
                  string: '{"id":"5e94eaf386374970d06e4c89","name":"IT 3","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"pinned":false,"url":"https://trello.com/b/VLS2p3fb/it-3","shortUrl":"https://trello.com/b/VLS2p3fb","labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e93f31519e59f41122a7f4f","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af","backgroundImageScaled":[{"width":140,"height":79,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":256,"height":144,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":480,"height":270,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":960,"height":540,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1024,"height":576,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2048,"height":1152,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1280,"height":720,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1920,"height":1080,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2560,"height":1440,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af"}],"backgroundTile":false,"backgroundBrightness":"light","backgroundBottomColor":"#c9977a","backgroundTopColor":"#759a9e","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true}}'
         
     | 
| 
      
 195 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 196 
     | 
    
         
            +
              recorded_at: Fri, 04 Sep 2020 15:37:32 GMT
         
     | 
| 
      
 197 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     | 
| 
         @@ -0,0 +1,207 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/members/hoppertest?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 29 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 39 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - 1.2192.0
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 43 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Sun, 23 Aug 2020 13:36:38 GMT; Secure
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 51 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 53 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 54 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 55 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '299'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '99'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '199'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - '1597930598051'
         
     | 
| 
      
 74 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - Thu, 20 Aug 2020 13:36:37 GMT
         
     | 
| 
      
 78 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - '91'
         
     | 
| 
      
 80 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 82 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 83 
     | 
    
         
            +
                  X-Logging-Id:
         
     | 
| 
      
 84 
     | 
    
         
            +
                  - 7a01fdce-4547-49f0-9059-3b05dad7c9ba
         
     | 
| 
      
 85 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 86 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 87 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 89 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 91 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 93 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 95 
     | 
    
         
            +
                body:
         
     | 
| 
      
 96 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 97 
     | 
    
         
            +
                  string: '{"id":"5e679b808e6e8828784b30e1","bio":"ab","bioData":{"emoji":{}},"confirmed":true,"memberType":"normal","username":"hoppertest","aaId":"5e679b1f84dcfc0cf391264e","activityBlocked":false,"avatarHash":null,"avatarUrl":null,"fullName":"Hopper
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Test","idEnterprise":null,"idEnterprisesDeactivated":[],"idMemberReferrer":null,"idPremOrgsAdmin":[],"initials":"HT","nonPublic":{},"nonPublicAvailable":true,"products":[],"url":"https://trello.com/hoppertest","status":"disconnected","aaBlockSyncUntil":null,"aaEmail":null,"aaEnrolledDate":null,"avatarSource":"none","credentialsRemovedCount":0,"domainClaimed":null,"email":"jx4554+test@gmail.com","gravatarHash":"18853624ee4456423b9dbeb0c30559c5","idBoards":["5e679be40c407034b479459c","5e70f5bed3f34a49e2f11409","5e93ba403f1ab3603ba81a09","5e93ba98614ac22d22f085c4","5e94eaf386374970d06e4c89","5e94ee7357ac8a3edc2b2145","5e94f5ded016b22c2437c13c","5ec7e46414a49e3f65847c27","5ee65e305081b1306530df45","5ee65e31325f0d0a10726e6e","5ee65f5fa64d6f2a7aee514c"],"idOrganizations":["5e93ba154634282b6df23bcc","5eb427016b5a464a74803f1c"],"idEnterprisesAdmin":[],"loginTypes":["atlassian"],"marketingOptIn":{"optedIn":true,"date":"2020-03-10T13:52:08.829Z"},"messagesDismissed":[{"_id":"5e93ba17f0caa581d8856a95","name":"team-join-cta-banner-5e93ba154634282b6df23bcc","count":1,"lastDismissed":"2020-04-13T01:02:15.807Z"},{"_id":"5eb4270e982a411bcc25991e","name":"team-join-cta-banner-5eb427016b5a464a74803f1c","count":1,"lastDismissed":"2020-05-07T15:19:42.837Z"}],"oneTimeMessagesDismissed":["create-first-board","close-menu-of-first-board","board-background-prompt","team-template-picker-5e93ba154634282b6df23bcc","your-items-on-home","ad-bc-prompt-upgrade-board-more-collection"],"prefs":{"privacy":{"fullName":"public","avatar":"public"},"sendSummaries":true,"minutesBetweenSummaries":60,"minutesBeforeDeadlineToNotify":1440,"colorBlind":false,"locale":"en-US"},"trophies":[],"uploadedAvatarHash":null,"uploadedAvatarUrl":null,"premiumFeatures":[],"isAaMastered":true,"siftDecision":null,"ixUpdate":"481","limits":{"boards":{"totalPerMember":{"status":"ok","disableAt":4500,"warnAt":4050}},"orgs":{"totalPerMember":{"status":"ok","disableAt":850,"warnAt":765}}}}'
         
     | 
| 
      
 99 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 100 
     | 
    
         
            +
              recorded_at: Thu, 20 Aug 2020 13:36:38 GMT
         
     | 
| 
      
 101 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 102 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 103 
     | 
    
         
            +
                uri: https://api.trello.com/1/members/5e679b808e6e8828784b30e1/boards?filter=all&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 104 
     | 
    
         
            +
                body:
         
     | 
| 
      
 105 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 106 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 107 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 108 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 109 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 110 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 111 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 112 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 113 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 114 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 115 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 116 
     | 
    
         
            +
              response:
         
     | 
| 
      
 117 
     | 
    
         
            +
                status:
         
     | 
| 
      
 118 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 119 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 120 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 121 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 122 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 123 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 125 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 126 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 127 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 128 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 129 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 130 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 131 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 132 
     | 
    
         
            +
                  - max-age=0, must-revalidate, no-cache, no-store
         
     | 
| 
      
 133 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 134 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 135 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - Thu, 01 Jan 1970 00:00:00
         
     | 
| 
      
 137 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - 1.2192.0
         
     | 
| 
      
 139 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Sun, 23 Aug 2020 13:36:38 GMT; Secure
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 147 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 148 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 149 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 150 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 151 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 152 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 153 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 154 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 155 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 156 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 157 
     | 
    
         
            +
                  - '298'
         
     | 
| 
      
 158 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 159 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 160 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 161 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 162 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 163 
     | 
    
         
            +
                  - '98'
         
     | 
| 
      
 164 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 165 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 166 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 167 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 168 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 169 
     | 
    
         
            +
                  - '198'
         
     | 
| 
      
 170 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 171 
     | 
    
         
            +
                  - '1597930598872'
         
     | 
| 
      
 172 
     | 
    
         
            +
                  X-Trello-Actual-Fastget-Path:
         
     | 
| 
      
 173 
     | 
    
         
            +
                  - fast
         
     | 
| 
      
 174 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 175 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 176 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 177 
     | 
    
         
            +
                  - Thu, 20 Aug 2020 13:36:38 GMT
         
     | 
| 
      
 178 
     | 
    
         
            +
                  X-Envoy-Upstream-Service-Time:
         
     | 
| 
      
 179 
     | 
    
         
            +
                  - '278'
         
     | 
| 
      
 180 
     | 
    
         
            +
                  Expect-Ct:
         
     | 
| 
      
 181 
     | 
    
         
            +
                  - report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
         
     | 
| 
      
 182 
     | 
    
         
            +
                    max-age=86400
         
     | 
| 
      
 183 
     | 
    
         
            +
                  X-Logging-Id:
         
     | 
| 
      
 184 
     | 
    
         
            +
                  - 7a01fdce-4547-49f0-9059-3b05dad7c9ba
         
     | 
| 
      
 185 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 186 
     | 
    
         
            +
                  - max-age=63072000; preload
         
     | 
| 
      
 187 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 188 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 189 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 190 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 191 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 192 
     | 
    
         
            +
                  - globaledge-envoy
         
     | 
| 
      
 193 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 194 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 195 
     | 
    
         
            +
                body:
         
     | 
| 
      
 196 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 197 
     | 
    
         
            +
                  string: '[{"name":"IT 1 - Changed","desc":"This is a test board called IT 1","descData":{"emoji":{}},"closed":false,"idOrganization":"5eb427016b5a464a74803f1c","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"0zx7ive1","powerUps":[],"dateLastActivity":"2020-06-07T03:44:11.955Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e93ba403f1ab3603ba81a09","starred":false,"url":"https://trello.com/b/0zx7ive1/it-1-changed","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"org","comments":"members","invitations":"members","selfJoin":false,"cardCovers":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"green","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#519839","backgroundBottomColor":"#519839","backgroundTopColor":"#519839","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-07T07:56:14.734Z","shortUrl":"https://trello.com/b/0zx7ive1","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e93ba403f1ab3603ba81a0a","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false},{"id":"5ec15679fbc17b8eacec69ce","idMember":"557a84544757401c6fc036f7","memberType":"normal","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 198 
     | 
    
         
            +
                    100","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"GkoW5NpN","powerUps":[],"dateLastActivity":"2020-06-14T17:28:16.166Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":"5e94eaf386374970d06e4c89","id":"5ee65e305081b1306530df45","starred":false,"url":"https://trello.com/b/GkoW5NpN/it-100","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"org","comments":"org","invitations":"members","selfJoin":false,"cardCovers":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"grey","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#838C91","backgroundBottomColor":"#838C91","backgroundTopColor":"#838C91","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-14T17:28:41.881Z","shortUrl":"https://trello.com/b/GkoW5NpN","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5ee65e305081b1306530df71","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 199 
     | 
    
         
            +
                    101","desc":"testing board create","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"kcBzm0pP","powerUps":[],"dateLastActivity":null,"idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5ee65e31325f0d0a10726e6e","starred":false,"url":"https://trello.com/b/kcBzm0pP/it-101","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"org","comments":"org","invitations":"members","selfJoin":false,"cardCovers":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"grey","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#838C91","backgroundBottomColor":"#838C91","backgroundTopColor":"#838C91","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-14T17:33:23.772Z","shortUrl":"https://trello.com/b/kcBzm0pP","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5ee65e31325f0d0a10726e6f","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 200 
     | 
    
         
            +
                    2","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"y1TF9GTa","powerUps":[],"dateLastActivity":"2020-05-17T16:06:16.126Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e93ba98614ac22d22f085c4","starred":true,"url":"https://trello.com/b/y1TF9GTa/it-2","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e9093e2134e6987494c7ca8","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2300ad88b61e46629c4063e0095bf986/photo-1586462175816-c0e709898f01","backgroundImageScaled":[{"width":140,"height":93,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":256,"height":171,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":480,"height":320,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":960,"height":640,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":1024,"height":683,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":2048,"height":1366,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":1280,"height":854,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":1920,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":2400,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/08d5092270be6b5bb40247b7a7f5a924/photo-1586462175816-c0e709898f01.jpg"},{"width":2560,"height":1707,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2300ad88b61e46629c4063e0095bf986/photo-1586462175816-c0e709898f01"}],"backgroundTile":false,"backgroundBrightness":"light","backgroundBottomColor":"#92d3ca","backgroundTopColor":"#d9e3eb","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-14T17:12:28.474Z","shortUrl":"https://trello.com/b/y1TF9GTa","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e93ba98614ac22d22f085c5","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 201 
     | 
    
         
            +
                    3","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"VLS2p3fb","powerUps":[],"dateLastActivity":"2020-04-14T00:02:59.591Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e94eaf386374970d06e4c89","starred":true,"url":"https://trello.com/b/VLS2p3fb/it-3","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e93f31519e59f41122a7f4f","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af","backgroundImageScaled":[{"width":140,"height":79,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":256,"height":144,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":480,"height":270,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":960,"height":540,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1024,"height":576,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2048,"height":1152,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1280,"height":720,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1920,"height":1080,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2560,"height":1440,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af"}],"backgroundTile":false,"backgroundBrightness":"light","backgroundBottomColor":"#c9977a","backgroundTopColor":"#759a9e","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-14T17:17:20.342Z","shortUrl":"https://trello.com/b/VLS2p3fb","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e94eaf386374970d06e4c8a","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 202 
     | 
    
         
            +
                    4","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"xx6VZv8k","powerUps":[],"dateLastActivity":"2020-04-15T01:00:17.587Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e94ee7357ac8a3edc2b2145","starred":true,"url":"https://trello.com/b/xx6VZv8k/it-4","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e93f31519e59f41122a7f4f","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af","backgroundImageScaled":[{"width":140,"height":79,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":256,"height":144,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":480,"height":270,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":960,"height":540,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1024,"height":576,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2048,"height":1152,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1280,"height":720,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":1920,"height":1080,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2560,"height":1440,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af"}],"backgroundTile":false,"backgroundBrightness":"light","backgroundBottomColor":"#c9977a","backgroundTopColor":"#759a9e","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-05-17T15:20:35.845Z","shortUrl":"https://trello.com/b/xx6VZv8k","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e94ee7357ac8a3edc2b2146","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 203 
     | 
    
         
            +
                    5","desc":"","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"RybNrdNM","powerUps":[],"dateLastActivity":"2020-04-15T13:33:18.333Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e94f5ded016b22c2437c13c","starred":true,"url":"https://trello.com/b/RybNrdNM/it-5","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"members","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"blue","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#0079BF","backgroundBottomColor":"#0079BF","backgroundTopColor":"#0079BF","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-05-24T06:35:01.070Z","shortUrl":"https://trello.com/b/RybNrdNM","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e94f5ded016b22c2437c13d","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"IT
         
     | 
| 
      
 204 
     | 
    
         
            +
                    99","desc":"testing board create","descData":null,"closed":false,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":null,"pinned":null,"shortLink":"s0ETUJD5","powerUps":[],"dateLastActivity":null,"idTags":[],"datePluginDisable":null,"creationMethod":"automatic","ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5ee65f5fa64d6f2a7aee514c","starred":false,"url":"https://trello.com/b/s0ETUJD5/it-99","prefs":{"permissionLevel":"private","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"blue","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#0079BF","backgroundBottomColor":"#0079BF","backgroundTopColor":"#0079BF","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-06-14T17:33:34.997Z","shortUrl":"https://trello.com/b/s0ETUJD5","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5ee65f5fa64d6f2a7aee5150","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"TTT","desc":"description...","descData":null,"closed":false,"idOrganization":null,"idEnterprise":null,"limits":null,"pinned":null,"shortLink":"jOe8Ipco","powerUps":[],"dateLastActivity":null,"idTags":[],"datePluginDisable":null,"creationMethod":"automatic","ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5ec7e46414a49e3f65847c27","starred":false,"url":"https://trello.com/b/jOe8Ipco/ttt","prefs":{"permissionLevel":"private","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"blue","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#0079BF","backgroundBottomColor":"#0079BF","backgroundTopColor":"#0079BF","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"shortUrl":"https://trello.com/b/jOe8Ipco","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5ec7e46414a49e3f65847c2b","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"ruby-trello","desc":"","descData":null,"closed":false,"idOrganization":null,"idEnterprise":null,"limits":null,"pinned":null,"shortLink":"cHDSP1N4","powerUps":[],"dateLastActivity":"2020-04-12T12:57:25.277Z","idTags":[],"datePluginDisable":null,"creationMethod":"assisted","ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e679be40c407034b479459c","starred":true,"url":"https://trello.com/b/cHDSP1N4/ruby-trello","prefs":{"permissionLevel":"private","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"sky","backgroundImage":null,"backgroundImageScaled":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundColor":"#00AECC","backgroundBottomColor":"#00AECC","backgroundTopColor":"#00AECC","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-04-12T13:00:19.239Z","shortUrl":"https://trello.com/b/cHDSP1N4","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e679be40c407034b479459d","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]},{"name":"test-2","desc":"","descData":null,"closed":false,"idOrganization":null,"idEnterprise":null,"limits":null,"pinned":null,"shortLink":"ffMqaSv6","powerUps":[],"dateLastActivity":"2020-04-12T13:18:36.661Z","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":null,"enterpriseOwned":false,"idBoardSource":null,"id":"5e70f5bed3f34a49e2f11409","starred":true,"url":"https://trello.com/b/ffMqaSv6/test-2","prefs":{"permissionLevel":"private","hideVotes":false,"voting":"members","comments":"members","invitations":"members","selfJoin":false,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e705a90ccc1582054bd05a8","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/f16308fb2cc42dba6c3f8993f9369c4e/photo-1584303185213-423f6965a646","backgroundImageScaled":[{"width":67,"height":100,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":128,"height":192,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":320,"height":480,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":640,"height":960,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":683,"height":1024,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":853,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":1280,"height":1920,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":1066,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/1171f09a47dcfcd82a11dc2cb5b6c611/photo-1584303185213-423f6965a646.jpg"},{"width":1365,"height":2048,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/f16308fb2cc42dba6c3f8993f9369c4e/photo-1584303185213-423f6965a646"}],"backgroundTile":false,"backgroundBrightness":"light","backgroundBottomColor":"#221e1b","backgroundTopColor":"#b9bcb5","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"dateLastView":"2020-04-13T01:01:34.536Z","shortUrl":"https://trello.com/b/ffMqaSv6","templateGallery":null,"premiumFeatures":[],"memberships":[{"id":"5e70f5bed3f34a49e2f1140a","idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false}]}]'
         
     | 
| 
      
 205 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 206 
     | 
    
         
            +
              recorded_at: Thu, 20 Aug 2020 13:36:38 GMT
         
     | 
| 
      
 207 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     |