ruby-trello 4.1.0 → 4.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/lib/trello/action.rb +8 -8
- data/lib/trello/board.rb +2 -2
- data/lib/trello/card.rb +11 -10
- data/lib/trello/comment.rb +6 -6
- data/lib/trello/notification.rb +10 -10
- data/lib/trello/organization.rb +2 -2
- data/spec/action_spec.rb +4 -4
- data/spec/association_spec.rb +1 -1
- data/spec/board_spec.rb +1 -1
- data/spec/card_spec.rb +5 -5
- data/spec/cassettes/can_get_boards_of_organization.yml +105 -84
- data/spec/cassettes/can_get_boards_with_filter_of_organization.yml +222 -0
- data/spec/integration/organization/associations/boards_spec.rb +22 -0
- data/spec/notification_spec.rb +5 -5
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33fd510f3a84ba004edaa9f4ccec95bb616af0d8658be375ba079916bfa8795d
|
4
|
+
data.tar.gz: 7cfeadb04a8a97351b83d5c8b8dc316a2b8f868e54b827993a49b4668031d8ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ed9410f4f6d834e87f3cb26f0e50eadcf8746224775605877e8c981c0848643cf25eefe4bace7fa76a54bf046282f5f68b3252ece365db6113b93375433191
|
7
|
+
data.tar.gz: 0bbf70b993c9a15b046b4cfcc028d90b04f98a78994017f4257404ec43fc5b6c1fe0e37ade3d189801672c9a5b9a7915f62d5e2430e8948a6a399c427111c50d
|
data/README.md
CHANGED
@@ -15,11 +15,12 @@ to, please just [create an issue](https://github.com/jeremytregunna/ruby-trello/
|
|
15
15
|
|
16
16
|
## Requirements
|
17
17
|
|
18
|
-
| Ruby \ ActiveModel | 6.0 | 6.1 | 7.0 |
|
18
|
+
| Ruby \ ActiveModel | 6.0 | 6.1 | 7.0 | 7.1 |
|
19
19
|
| ---- | ---- | ---- | ---- |
|
20
|
-
| 2.7 | ✅ | ✅ | ✅ |
|
21
|
-
| 3.0 | ✅ | ✅ | ✅ |
|
22
|
-
| 3.1 | ✅ | ✅ | ✅ |
|
20
|
+
| 2.7 | ✅ | ✅ | ✅ | ✅ |
|
21
|
+
| 3.0 | ✅ | ✅ | ✅ | ✅ |
|
22
|
+
| 3.1 | ✅ | ✅ | ✅ | ✅ |
|
23
|
+
| 3.2 | ✅ | ✅ | ✅ | ✅ |
|
23
24
|
|
24
25
|
- Use the newest version for Ruby 2.7.0 or newer support.
|
25
26
|
- Use version 3.2.0 or earlier for Ruby 2.5 ~ 2.6 support.
|
data/lib/trello/action.rb
CHANGED
@@ -54,23 +54,23 @@ module Trello
|
|
54
54
|
end
|
55
55
|
|
56
56
|
# Returns the board this action occurred on.
|
57
|
-
def board
|
58
|
-
Board.from_response client.get("/actions/#{id}/board")
|
57
|
+
def board(params = {})
|
58
|
+
Board.from_response client.get("/actions/#{id}/board", params)
|
59
59
|
end
|
60
60
|
|
61
61
|
# Returns the card the action occurred on.
|
62
|
-
def card
|
63
|
-
Card.from_response client.get("/actions/#{id}/card")
|
62
|
+
def card(params = {})
|
63
|
+
Card.from_response client.get("/actions/#{id}/card", params)
|
64
64
|
end
|
65
65
|
|
66
66
|
# Returns the list the action occurred on.
|
67
|
-
def list
|
68
|
-
List.from_response client.get("/actions/#{id}/list")
|
67
|
+
def list(params = {})
|
68
|
+
List.from_response client.get("/actions/#{id}/list", params)
|
69
69
|
end
|
70
70
|
|
71
71
|
# Returns the list the action occurred on.
|
72
|
-
def member_creator
|
73
|
-
Member.from_response client.get("/actions/#{id}/memberCreator")
|
72
|
+
def member_creator(params = {})
|
73
|
+
Member.from_response client.get("/actions/#{id}/memberCreator", params)
|
74
74
|
end
|
75
75
|
end
|
76
76
|
end
|
data/lib/trello/board.rb
CHANGED
@@ -106,8 +106,8 @@ module Trello
|
|
106
106
|
|
107
107
|
class << self
|
108
108
|
# @return [Array<Trello::Board>] all boards for the current user
|
109
|
-
def all
|
110
|
-
from_response client.get("/members/#{Member.find(:me).username}/boards")
|
109
|
+
def all(params = {})
|
110
|
+
from_response client.get("/members/#{Member.find(:me).username}/boards", params)
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
data/lib/trello/card.rb
CHANGED
@@ -105,8 +105,8 @@ module Trello
|
|
105
105
|
# List of custom field values on the card, only the ones that have been set
|
106
106
|
many :custom_field_items, path: 'customFieldItems'
|
107
107
|
|
108
|
-
def check_item_states
|
109
|
-
states = CheckItemState.from_response client.get("/cards/#{self.id}/checkItemStates")
|
108
|
+
def check_item_states(params = {})
|
109
|
+
states = CheckItemState.from_response client.get("/cards/#{self.id}/checkItemStates", params)
|
110
110
|
MultiAssociation.new(self, states).proxy
|
111
111
|
end
|
112
112
|
|
@@ -116,8 +116,8 @@ module Trello
|
|
116
116
|
# Returns a list of members who are assigned to this card.
|
117
117
|
#
|
118
118
|
# @return [Array<Trello::Member>]
|
119
|
-
def members
|
120
|
-
members = Member.from_response client.get("/cards/#{self.id}/members")
|
119
|
+
def members(params = {})
|
120
|
+
members = Member.from_response client.get("/cards/#{self.id}/members", params)
|
121
121
|
MultiAssociation.new(self, members).proxy
|
122
122
|
end
|
123
123
|
|
@@ -127,8 +127,8 @@ module Trello
|
|
127
127
|
# accuracy over network performance
|
128
128
|
#
|
129
129
|
# @return [Array<Trello::Member>]
|
130
|
-
def voters
|
131
|
-
Member.from_response client.get("/cards/#{id}/membersVoted")
|
130
|
+
def voters(params = {})
|
131
|
+
Member.from_response client.get("/cards/#{id}/membersVoted", params)
|
132
132
|
end
|
133
133
|
|
134
134
|
# Delete this card
|
@@ -285,8 +285,8 @@ module Trello
|
|
285
285
|
end
|
286
286
|
|
287
287
|
# Retrieve a list of attachments
|
288
|
-
def attachments
|
289
|
-
attachments = Attachment.from_response client.get("/cards/#{id}/attachments")
|
288
|
+
def attachments(params = {})
|
289
|
+
attachments = Attachment.from_response client.get("/cards/#{id}/attachments", params)
|
290
290
|
MultiAssociation.new(self, attachments).proxy
|
291
291
|
end
|
292
292
|
|
@@ -301,8 +301,9 @@ module Trello
|
|
301
301
|
end
|
302
302
|
|
303
303
|
# Retrieve a list of comments
|
304
|
-
def comments
|
305
|
-
|
304
|
+
def comments(params = {})
|
305
|
+
params[:filter] ||= "commentCard"
|
306
|
+
comments = Comment.from_response client.get("/cards/#{id}/actions", params)
|
306
307
|
end
|
307
308
|
|
308
309
|
# Find the creation date
|
data/lib/trello/comment.rb
CHANGED
@@ -49,18 +49,18 @@ module Trello
|
|
49
49
|
end
|
50
50
|
|
51
51
|
# Returns the board this comment is located
|
52
|
-
def board
|
53
|
-
Board.from_response client.get("/actions/#{id}/board")
|
52
|
+
def board(params = {})
|
53
|
+
Board.from_response client.get("/actions/#{id}/board", params)
|
54
54
|
end
|
55
55
|
|
56
56
|
# Returns the card the comment is located
|
57
|
-
def card
|
58
|
-
Card.from_response client.get("/actions/#{id}/card")
|
57
|
+
def card(params = {})
|
58
|
+
Card.from_response client.get("/actions/#{id}/card", params)
|
59
59
|
end
|
60
60
|
|
61
61
|
# Returns the list the comment is located
|
62
|
-
def list
|
63
|
-
List.from_response client.get("/actions/#{id}/list")
|
62
|
+
def list(params = {})
|
63
|
+
List.from_response client.get("/actions/#{id}/list", params)
|
64
64
|
end
|
65
65
|
|
66
66
|
# Deletes the comment from the card
|
data/lib/trello/notification.rb
CHANGED
@@ -45,24 +45,24 @@ module Trello
|
|
45
45
|
|
46
46
|
one :creator, path: :members, via: Member, using: :creator_id
|
47
47
|
|
48
|
-
def board
|
49
|
-
Board.from_response client.get("/notifications/#{id}/board")
|
48
|
+
def board(params = {})
|
49
|
+
Board.from_response client.get("/notifications/#{id}/board", params)
|
50
50
|
end
|
51
51
|
|
52
|
-
def list
|
53
|
-
List.from_response client.get("/notifications/#{id}/list")
|
52
|
+
def list(params = {})
|
53
|
+
List.from_response client.get("/notifications/#{id}/list", params)
|
54
54
|
end
|
55
55
|
|
56
|
-
def card
|
57
|
-
Card.from_response client.get("/notifications/#{id}/card")
|
56
|
+
def card(params = {})
|
57
|
+
Card.from_response client.get("/notifications/#{id}/card", params)
|
58
58
|
end
|
59
59
|
|
60
|
-
def member
|
61
|
-
Member.from_response client.get("/notifications/#{id}/member")
|
60
|
+
def member(params = {})
|
61
|
+
Member.from_response client.get("/notifications/#{id}/member", params)
|
62
62
|
end
|
63
63
|
|
64
|
-
def organization
|
65
|
-
Organization.from_response client.get("/notifications/#{id}/organization")
|
64
|
+
def organization(params = {})
|
65
|
+
Organization.from_response client.get("/notifications/#{id}/organization", params)
|
66
66
|
end
|
67
67
|
end
|
68
68
|
end
|
data/lib/trello/organization.rb
CHANGED
@@ -77,8 +77,8 @@ module Trello
|
|
77
77
|
end
|
78
78
|
|
79
79
|
# Returns a list of boards under this organization.
|
80
|
-
def boards
|
81
|
-
boards = Board.from_response client.get("/organizations/#{id}/boards
|
80
|
+
def boards(params = {})
|
81
|
+
boards = Board.from_response client.get("/organizations/#{id}/boards", params)
|
82
82
|
MultiAssociation.new(self, boards).proxy
|
83
83
|
end
|
84
84
|
|
data/spec/action_spec.rb
CHANGED
@@ -71,7 +71,7 @@ module Trello
|
|
71
71
|
before do
|
72
72
|
allow(client)
|
73
73
|
.to receive(:get)
|
74
|
-
.with('/actions/4ee2482134a81a757a08af47/board')
|
74
|
+
.with('/actions/4ee2482134a81a757a08af47/board', {})
|
75
75
|
.and_return payload
|
76
76
|
end
|
77
77
|
|
@@ -87,7 +87,7 @@ module Trello
|
|
87
87
|
before do
|
88
88
|
allow(client)
|
89
89
|
.to receive(:get)
|
90
|
-
.with('/actions/4ee2482134a81a757a08af47/card')
|
90
|
+
.with('/actions/4ee2482134a81a757a08af47/card', {})
|
91
91
|
.and_return payload
|
92
92
|
end
|
93
93
|
|
@@ -102,7 +102,7 @@ module Trello
|
|
102
102
|
before do
|
103
103
|
allow(client)
|
104
104
|
.to receive(:get)
|
105
|
-
.with('/actions/4ee2482134a81a757a08af47/list')
|
105
|
+
.with('/actions/4ee2482134a81a757a08af47/list', {})
|
106
106
|
.and_return payload
|
107
107
|
end
|
108
108
|
|
@@ -116,7 +116,7 @@ module Trello
|
|
116
116
|
before do
|
117
117
|
allow(client)
|
118
118
|
.to receive(:get)
|
119
|
-
.with('/actions/4ee2482134a81a757a08af47/memberCreator')
|
119
|
+
.with('/actions/4ee2482134a81a757a08af47/memberCreator', {})
|
120
120
|
.and_return user_payload
|
121
121
|
end
|
122
122
|
|
data/spec/association_spec.rb
CHANGED
data/spec/board_spec.rb
CHANGED
data/spec/card_spec.rb
CHANGED
@@ -511,7 +511,7 @@ module Trello
|
|
511
511
|
|
512
512
|
allow(client)
|
513
513
|
.to receive(:get)
|
514
|
-
.with("/cards/abcdef123456789123456789/members")
|
514
|
+
.with("/cards/abcdef123456789123456789/members", {})
|
515
515
|
.and_return user_payload
|
516
516
|
end
|
517
517
|
|
@@ -597,7 +597,7 @@ module Trello
|
|
597
597
|
no_voters = JSON.generate([])
|
598
598
|
expect(client)
|
599
599
|
.to receive(:get)
|
600
|
-
.with("/cards/#{card.id}/membersVoted")
|
600
|
+
.with("/cards/#{card.id}/membersVoted", {})
|
601
601
|
.and_return(no_voters)
|
602
602
|
|
603
603
|
card.voters
|
@@ -606,7 +606,7 @@ module Trello
|
|
606
606
|
voters = JSON.generate([user_details])
|
607
607
|
expect(client)
|
608
608
|
.to receive(:get)
|
609
|
-
.with("/cards/#{card.id}/membersVoted")
|
609
|
+
.with("/cards/#{card.id}/membersVoted", {})
|
610
610
|
.and_return(voters)
|
611
611
|
|
612
612
|
expect(card.voters.first).to be_kind_of Trello::Member
|
@@ -750,7 +750,7 @@ module Trello
|
|
750
750
|
|
751
751
|
allow(client)
|
752
752
|
.to receive(:get)
|
753
|
-
.with("/cards/abcdef123456789123456789/attachments")
|
753
|
+
.with("/cards/abcdef123456789123456789/attachments", {})
|
754
754
|
.and_return attachments_payload
|
755
755
|
|
756
756
|
expect(card.board).to_not be_nil
|
@@ -779,7 +779,7 @@ module Trello
|
|
779
779
|
|
780
780
|
allow(client)
|
781
781
|
.to receive(:get)
|
782
|
-
.with("/cards/abcdef123456789123456789/attachments")
|
782
|
+
.with("/cards/abcdef123456789123456789/attachments", {})
|
783
783
|
.and_return attachments_payload
|
784
784
|
|
785
785
|
card.remove_attachment(card.attachments.first)
|
@@ -7,29 +7,33 @@ http_interactions:
|
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
|
-
Accept:
|
11
|
-
- "*/*"
|
12
10
|
User-Agent:
|
13
|
-
-
|
11
|
+
- Faraday v2.7.11
|
14
12
|
Accept-Encoding:
|
15
13
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
-
|
17
|
-
-
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
18
16
|
response:
|
19
17
|
status:
|
20
18
|
code: 200
|
21
19
|
message: OK
|
22
20
|
headers:
|
21
|
+
Date:
|
22
|
+
- Thu, 21 Dec 2023 16:35:14 GMT
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=utf-8
|
25
|
+
Content-Length:
|
26
|
+
- '337'
|
27
|
+
Referrer-Policy:
|
28
|
+
- strict-origin-when-cross-origin
|
23
29
|
X-Dns-Prefetch-Control:
|
24
30
|
- 'off'
|
25
|
-
X-Frame-Options:
|
26
|
-
- DENY
|
27
31
|
X-Download-Options:
|
28
32
|
- noopen
|
33
|
+
X-Frame-Options:
|
34
|
+
- DENY
|
29
35
|
X-Permitted-Cross-Domain-Policies:
|
30
36
|
- none
|
31
|
-
Referrer-Policy:
|
32
|
-
- strict-origin-when-cross-origin
|
33
37
|
Surrogate-Control:
|
34
38
|
- no-store
|
35
39
|
Cache-Control:
|
@@ -39,11 +43,14 @@ http_interactions:
|
|
39
43
|
Expires:
|
40
44
|
- Thu, 01 Jan 1970 00:00:00
|
41
45
|
X-Trello-Version:
|
42
|
-
- 1.
|
46
|
+
- 1.249073.0
|
43
47
|
X-Trello-Environment:
|
44
48
|
- Production
|
45
49
|
Set-Cookie:
|
46
|
-
- dsc=set_cookie_dsc; Path=/; Expires=
|
50
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Thu, 04 Jan 2024 16:35:14 GMT; Secure;
|
51
|
+
SameSite=None
|
52
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.Pfv1AFghhSOM0MLjFpWB8CaOPcNRIjt%2FmCZysEK4KNY;
|
53
|
+
Path=/; Expires=Thu, 28 Dec 2023 16:35:14 GMT; HttpOnly
|
47
54
|
Access-Control-Allow-Origin:
|
48
55
|
- "*"
|
49
56
|
Access-Control-Allow-Methods:
|
@@ -53,82 +60,85 @@ http_interactions:
|
|
53
60
|
Access-Control-Expose-Headers:
|
54
61
|
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
55
62
|
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
63
|
X-Rate-Limit-Api-Token-Interval-Ms:
|
63
64
|
- '10000'
|
64
65
|
X-Rate-Limit-Api-Token-Max:
|
65
66
|
- '100'
|
66
67
|
X-Rate-Limit-Api-Token-Remaining:
|
67
68
|
- '99'
|
69
|
+
X-Rate-Limit-Db-Query-Time-Interval-Ms:
|
70
|
+
- '600000'
|
71
|
+
X-Rate-Limit-Db-Query-Time-Max:
|
72
|
+
- '7200000'
|
73
|
+
X-Rate-Limit-Db-Query-Time-Remaining:
|
74
|
+
- '7199990'
|
75
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
76
|
+
- '10000'
|
77
|
+
X-Rate-Limit-Api-Key-Max:
|
78
|
+
- '300'
|
79
|
+
X-Rate-Limit-Api-Key-Remaining:
|
80
|
+
- '299'
|
68
81
|
X-Rate-Limit-Member-Interval-Ms:
|
69
82
|
- '10000'
|
70
83
|
X-Rate-Limit-Member-Max:
|
71
|
-
- '
|
84
|
+
- '375'
|
72
85
|
X-Rate-Limit-Member-Remaining:
|
73
|
-
- '
|
86
|
+
- '374'
|
74
87
|
X-Server-Time:
|
75
|
-
- '
|
76
|
-
|
77
|
-
-
|
78
|
-
Date:
|
79
|
-
- Tue, 15 Sep 2020 15:22:27 GMT
|
80
|
-
X-Envoy-Upstream-Service-Time:
|
81
|
-
- '93'
|
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
|
88
|
+
- '1703176514079'
|
89
|
+
Server:
|
90
|
+
- AtlassianEdge
|
87
91
|
X-Content-Type-Options:
|
88
92
|
- nosniff
|
89
93
|
X-Xss-Protection:
|
90
94
|
- 1; mode=block
|
91
|
-
|
92
|
-
-
|
93
|
-
|
94
|
-
-
|
95
|
+
Atl-Traceid:
|
96
|
+
- 2657ec781cdb473c8bf366160b072dff
|
97
|
+
Report-To:
|
98
|
+
- '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
|
99
|
+
"endpoint-1", "include_subdomains": true, "max_age": 600}'
|
100
|
+
Nel:
|
101
|
+
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
|
102
|
+
"endpoint-1"}'
|
103
|
+
Strict-Transport-Security:
|
104
|
+
- max-age=63072000; preload
|
95
105
|
body:
|
96
|
-
encoding:
|
106
|
+
encoding: UTF-8
|
97
107
|
string: '{"id":"5e93ba154634282b6df23bcc","name":"integrationtest11","displayName":"Integration
|
98
|
-
Test 1","descData":null,"website":null,"teamType":"engineering-it","
|
99
|
-
|
100
|
-
http_version: null
|
101
|
-
recorded_at: Tue, 15 Sep 2020 15:22:28 GMT
|
108
|
+
Test 1","desc":"This is a team for doing integration tests","descData":null,"url":"https://trello.com/w/integrationtest11","website":null,"teamType":"engineering-it","logoHash":null,"logoUrl":null,"offering":"trello.free","products":[],"powerUps":[]}'
|
109
|
+
recorded_at: Thu, 21 Dec 2023 16:35:14 GMT
|
102
110
|
- request:
|
103
111
|
method: get
|
104
|
-
uri: https://api.trello.com/1/organizations/5e93ba154634282b6df23bcc/boards
|
112
|
+
uri: https://api.trello.com/1/organizations/5e93ba154634282b6df23bcc/boards?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
105
113
|
body:
|
106
114
|
encoding: US-ASCII
|
107
115
|
string: ''
|
108
116
|
headers:
|
109
|
-
Accept:
|
110
|
-
- "*/*"
|
111
117
|
User-Agent:
|
112
|
-
-
|
118
|
+
- Faraday v2.7.11
|
113
119
|
Accept-Encoding:
|
114
120
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
115
|
-
|
116
|
-
-
|
121
|
+
Accept:
|
122
|
+
- "*/*"
|
117
123
|
response:
|
118
124
|
status:
|
119
125
|
code: 200
|
120
126
|
message: OK
|
121
127
|
headers:
|
128
|
+
Date:
|
129
|
+
- Thu, 21 Dec 2023 16:35:15 GMT
|
130
|
+
Content-Type:
|
131
|
+
- application/json; charset=utf-8
|
132
|
+
Referrer-Policy:
|
133
|
+
- strict-origin-when-cross-origin
|
122
134
|
X-Dns-Prefetch-Control:
|
123
135
|
- 'off'
|
124
|
-
X-Frame-Options:
|
125
|
-
- DENY
|
126
136
|
X-Download-Options:
|
127
137
|
- noopen
|
138
|
+
X-Frame-Options:
|
139
|
+
- DENY
|
128
140
|
X-Permitted-Cross-Domain-Policies:
|
129
141
|
- none
|
130
|
-
Referrer-Policy:
|
131
|
-
- strict-origin-when-cross-origin
|
132
142
|
Surrogate-Control:
|
133
143
|
- no-store
|
134
144
|
Cache-Control:
|
@@ -138,11 +148,14 @@ http_interactions:
|
|
138
148
|
Expires:
|
139
149
|
- Thu, 01 Jan 1970 00:00:00
|
140
150
|
X-Trello-Version:
|
141
|
-
- 1.
|
151
|
+
- 1.249073.0
|
142
152
|
X-Trello-Environment:
|
143
153
|
- Production
|
144
154
|
Set-Cookie:
|
145
|
-
- dsc=set_cookie_dsc; Path=/; Expires=
|
155
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Thu, 04 Jan 2024 16:35:15 GMT; Secure;
|
156
|
+
SameSite=None
|
157
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.Pfv1AFghhSOM0MLjFpWB8CaOPcNRIjt%2FmCZysEK4KNY;
|
158
|
+
Path=/; Expires=Thu, 28 Dec 2023 16:35:15 GMT; HttpOnly
|
146
159
|
Access-Control-Allow-Origin:
|
147
160
|
- "*"
|
148
161
|
Access-Control-Allow-Methods:
|
@@ -152,56 +165,64 @@ http_interactions:
|
|
152
165
|
Access-Control-Expose-Headers:
|
153
166
|
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
154
167
|
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
155
|
-
X-Rate-Limit-Api-Key-Interval-Ms:
|
156
|
-
- '10000'
|
157
|
-
X-Rate-Limit-Api-Key-Max:
|
158
|
-
- '300'
|
159
|
-
X-Rate-Limit-Api-Key-Remaining:
|
160
|
-
- '298'
|
161
168
|
X-Rate-Limit-Api-Token-Interval-Ms:
|
162
169
|
- '10000'
|
163
170
|
X-Rate-Limit-Api-Token-Max:
|
164
171
|
- '100'
|
165
172
|
X-Rate-Limit-Api-Token-Remaining:
|
166
173
|
- '98'
|
174
|
+
X-Rate-Limit-Db-Query-Time-Interval-Ms:
|
175
|
+
- '600000'
|
176
|
+
X-Rate-Limit-Db-Query-Time-Max:
|
177
|
+
- '7200000'
|
178
|
+
X-Rate-Limit-Db-Query-Time-Remaining:
|
179
|
+
- '7199990'
|
180
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
181
|
+
- '10000'
|
182
|
+
X-Rate-Limit-Api-Key-Max:
|
183
|
+
- '300'
|
184
|
+
X-Rate-Limit-Api-Key-Remaining:
|
185
|
+
- '298'
|
167
186
|
X-Rate-Limit-Member-Interval-Ms:
|
168
187
|
- '10000'
|
169
188
|
X-Rate-Limit-Member-Max:
|
170
|
-
- '
|
189
|
+
- '375'
|
171
190
|
X-Rate-Limit-Member-Remaining:
|
172
|
-
- '
|
191
|
+
- '373'
|
173
192
|
X-Server-Time:
|
174
|
-
- '
|
193
|
+
- '1703176515208'
|
175
194
|
X-Trello-Actual-Fastget-Path:
|
176
195
|
- fast
|
177
|
-
|
178
|
-
-
|
179
|
-
Date:
|
180
|
-
- Tue, 15 Sep 2020 15:22:28 GMT
|
181
|
-
X-Envoy-Upstream-Service-Time:
|
182
|
-
- '124'
|
183
|
-
Expect-Ct:
|
184
|
-
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
185
|
-
max-age=86400
|
186
|
-
Strict-Transport-Security:
|
187
|
-
- max-age=63072000; preload
|
196
|
+
Server:
|
197
|
+
- AtlassianEdge
|
188
198
|
X-Content-Type-Options:
|
189
199
|
- nosniff
|
190
200
|
X-Xss-Protection:
|
191
201
|
- 1; mode=block
|
192
|
-
|
193
|
-
-
|
202
|
+
Atl-Traceid:
|
203
|
+
- 7d19915e1b454303a878aed0fc6cbef6
|
204
|
+
Report-To:
|
205
|
+
- '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
|
206
|
+
"endpoint-1", "include_subdomains": true, "max_age": 600}'
|
207
|
+
Nel:
|
208
|
+
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
|
209
|
+
"endpoint-1"}'
|
210
|
+
Strict-Transport-Security:
|
211
|
+
- max-age=63072000; preload
|
212
|
+
Vary:
|
213
|
+
- Accept-Encoding
|
194
214
|
Transfer-Encoding:
|
195
215
|
- chunked
|
196
216
|
body:
|
197
217
|
encoding: ASCII-8BIT
|
198
|
-
string: '[{"
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
218
|
+
string: '[{"id":"5ee65e305081b1306530df45","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5ee65e305081b1306530df45","name":"IT
|
219
|
+
100","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"grey","backgroundColor":"#838C91","backgroundImage":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundImageScaled":null,"backgroundBottomColor":"#838C91","backgroundTopColor":"#838C91","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"GkoW5NpN","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2020-06-14T17:28:16.166Z","dateLastView":"2023-11-11T15:18:19.369Z","shortUrl":"https://trello.com/b/GkoW5NpN","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"5","templateGallery":null,"enterpriseOwned":false,"idBoardSource":"5e94eaf386374970d06e4c89","premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":null,"memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5ee65e305081b1306530df71"}]},{"id":"5ee65e31325f0d0a10726e6e","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5ee65e31325f0d0a10726e6e","name":"IT
|
220
|
+
101","desc":"testing board create","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"grey","backgroundColor":"#838C91","backgroundImage":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundImageScaled":null,"backgroundBottomColor":"#838C91","backgroundTopColor":"#838C91","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"kcBzm0pP","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":null,"dateLastView":"2023-12-21T16:23:45.054Z","shortUrl":"https://trello.com/b/kcBzm0pP","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"3","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5ee65e31325f0d0a10726e6f"}]},{"id":"5e93ba98614ac22d22f085c4","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5e93ba98614ac22d22f085c4","name":"IT
|
221
|
+
2","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"5e9093e2134e6987494c7ca8","backgroundColor":null,"backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2300ad88b61e46629c4063e0095bf986/photo-1586462175816-c0e709898f01","backgroundTile":false,"backgroundBrightness":"light","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":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":2048,"height":1366,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/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"}],"backgroundBottomColor":"#92d3ca","backgroundTopColor":"#d9e3eb","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"y1TF9GTa","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2022-02-02T16:17:21.803Z","dateLastView":"2023-11-11T15:18:01.096Z","shortUrl":"https://trello.com/b/y1TF9GTa","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"124","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5e93ba98614ac22d22f085c5"}]},{"id":"5e94eaf386374970d06e4c89","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5e94eaf386374970d06e4c89","name":"IT
|
222
|
+
3","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"5e93f31519e59f41122a7f4f","backgroundColor":null,"backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af","backgroundTile":false,"backgroundBrightness":"light","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":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":2048,"height":1152,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2560,"height":1440,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af"}],"backgroundBottomColor":"#c9977a","backgroundTopColor":"#759a9e","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"VLS2p3fb","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2020-11-08T13:36:05.200Z","dateLastView":"2023-11-11T15:18:03.705Z","shortUrl":"https://trello.com/b/VLS2p3fb","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"137","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5e94eaf386374970d06e4c8a"}]},{"id":"5e94ee7357ac8a3edc2b2145","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5e94ee7357ac8a3edc2b2145","name":"IT
|
223
|
+
4","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"5e93f31519e59f41122a7f4f","backgroundColor":null,"backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af","backgroundTile":false,"backgroundBrightness":"light","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":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":2048,"height":1152,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/61d1b8df81dfa16a5c3695bbac867ff9/photo-1586696037912-43cfc1f854af.jpg"},{"width":2560,"height":1440,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/38b75fa5aaab2d13a6f8eab4b9016390/photo-1586696037912-43cfc1f854af"}],"backgroundBottomColor":"#c9977a","backgroundTopColor":"#759a9e","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"xx6VZv8k","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2020-04-15T01:00:17.587Z","dateLastView":"2023-11-11T15:18:10.146Z","shortUrl":"https://trello.com/b/xx6VZv8k","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"23","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5e94ee7357ac8a3edc2b2146"}]},{"id":"5e94f5ded016b22c2437c13c","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5e94f5ded016b22c2437c13c","name":"IT
|
224
|
+
5","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"blue","backgroundColor":"#0079BF","backgroundImage":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundImageScaled":null,"backgroundBottomColor":"#0079BF","backgroundTopColor":"#0079BF","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"RybNrdNM","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2023-11-11T18:18:48.593Z","dateLastView":"2023-11-11T18:23:51.626Z","shortUrl":"https://trello.com/b/RybNrdNM","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"86","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5e94f5ded016b22c2437c13d"}]},{"id":"5fa757c864083f6464d25346","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5fa757c864083f6464d25346","name":"IT
|
225
|
+
6","desc":"","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"starred":false,"url":"https://trello.com/b/i1GEyW4r/it-6","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"5fa5b9b39e6ca0205f2c8826","backgroundColor":null,"backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/f1f9bf7bfa79537cb1b6a5c7b6e2182f/photo-1604657043102-ba8a802f37a8","backgroundTile":false,"backgroundBrightness":"dark","backgroundImageScaled":[{"width":80,"height":100,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/80x100/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":154,"height":192,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/154x192/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":384,"height":480,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/384x480/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":768,"height":960,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/768x960/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":820,"height":1024,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/820x1024/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":1024,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x1280/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":1280,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1600/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":1537,"height":1920,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1537x1920/b504de045af4c968070c5c252eca00cc/photo-1604657043102-ba8a802f37a8.jpg"},{"width":1639,"height":2048,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/f1f9bf7bfa79537cb1b6a5c7b6e2182f/photo-1604657043102-ba8a802f37a8"}],"backgroundBottomColor":"#040404","backgroundTopColor":"#c1cecf","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"i1GEyW4r","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":"2020-11-08T09:38:27.359Z","dateLastView":"2023-11-11T15:18:24.507Z","shortUrl":"https://trello.com/b/i1GEyW4r","idTags":[],"datePluginDisable":null,"creationMethod":null,"ixUpdate":"23","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5fa757c864083f6464d25347"}]},{"id":"5ee65f5fa64d6f2a7aee514c","nodeId":"ari:cloud:trello::board/workspace/5e93ba154634282b6df23bcc/5ee65f5fa64d6f2a7aee514c","name":"IT
|
226
|
+
99","desc":"testing board create","descData":null,"closed":false,"dateClosed":null,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"limits":{"attachments":{"perBoard":{"status":"ok","disableAt":36000,"warnAt":28800},"perCard":{"status":"ok","disableAt":1000,"warnAt":800}},"boards":{"totalMembersPerBoard":{"status":"ok","disableAt":1600,"warnAt":1280},"totalAccessRequestsPerBoard":{"status":"ok","disableAt":4000,"warnAt":3200}},"cards":{"openPerBoard":{"status":"ok","disableAt":5000,"warnAt":4000},"openPerList":{"status":"ok","disableAt":5000,"warnAt":4000},"totalPerBoard":{"status":"ok","disableAt":2000000,"warnAt":1600000},"totalPerList":{"status":"ok","disableAt":1000000,"warnAt":800000}},"checklists":{"perBoard":{"status":"ok","disableAt":1800000,"warnAt":1440000},"perCard":{"status":"ok","disableAt":500,"warnAt":400}},"checkItems":{"perChecklist":{"status":"ok","disableAt":200,"warnAt":160}},"customFields":{"perBoard":{"status":"ok","disableAt":50,"warnAt":40}},"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":40}},"labels":{"perBoard":{"status":"ok","disableAt":1000,"warnAt":800}},"lists":{"openPerBoard":{"status":"ok","disableAt":500,"warnAt":400},"totalPerBoard":{"status":"ok","disableAt":3000,"warnAt":2400}},"stickers":{"perCard":{"status":"ok","disableAt":70,"warnAt":56}},"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"pinned":false,"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,"cardCounts":false,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"hiddenPluginBoardButtons":[],"switcherViews":[{"viewType":"Board","enabled":true},{"viewType":"Table","enabled":true},{"viewType":"Calendar","enabled":false},{"viewType":"Dashboard","enabled":false},{"viewType":"Timeline","enabled":false},{"viewType":"Map","enabled":false}],"background":"blue","backgroundColor":"#0079BF","backgroundImage":null,"backgroundTile":false,"backgroundBrightness":"dark","backgroundImageScaled":null,"backgroundBottomColor":"#0079BF","backgroundTopColor":"#0079BF","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"shortLink":"s0ETUJD5","subscribed":false,"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":"","green_dark":"","yellow_dark":"","orange_dark":"","red_dark":"","purple_dark":"","blue_dark":"","sky_dark":"","lime_dark":"","pink_dark":"","black_dark":"","green_light":"","yellow_light":"","orange_light":"","red_light":"","purple_light":"","blue_light":"","sky_light":"","lime_light":"","pink_light":"","black_light":""},"powerUps":[],"dateLastActivity":null,"dateLastView":"2023-11-11T15:18:26.779Z","shortUrl":"https://trello.com/b/s0ETUJD5","idTags":[],"datePluginDisable":null,"creationMethod":"automatic","ixUpdate":"3","templateGallery":null,"enterpriseOwned":false,"idBoardSource":null,"premiumFeatures":["additionalBoardBackgrounds","additionalStickers","customBoardBackgrounds","customEmoji","customStickers","plugins"],"idMemberCreator":"5e679b808e6e8828784b30e1","memberships":[{"idMember":"5e679b808e6e8828784b30e1","memberType":"admin","unconfirmed":false,"deactivated":false,"id":"5ee65f5fa64d6f2a7aee5150"}]}]'
|
227
|
+
recorded_at: Thu, 21 Dec 2023 16:35:15 GMT
|
228
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,222 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/organizations/5e93ba154634282b6df23bcc?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v2.7.11
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Thu, 21 Dec 2023 16:37:16 GMT
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=utf-8
|
25
|
+
Content-Length:
|
26
|
+
- '337'
|
27
|
+
Referrer-Policy:
|
28
|
+
- strict-origin-when-cross-origin
|
29
|
+
X-Dns-Prefetch-Control:
|
30
|
+
- 'off'
|
31
|
+
X-Download-Options:
|
32
|
+
- noopen
|
33
|
+
X-Frame-Options:
|
34
|
+
- DENY
|
35
|
+
X-Permitted-Cross-Domain-Policies:
|
36
|
+
- none
|
37
|
+
Surrogate-Control:
|
38
|
+
- no-store
|
39
|
+
Cache-Control:
|
40
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
41
|
+
Pragma:
|
42
|
+
- no-cache
|
43
|
+
Expires:
|
44
|
+
- Thu, 01 Jan 1970 00:00:00
|
45
|
+
X-Trello-Version:
|
46
|
+
- 1.249073.0
|
47
|
+
X-Trello-Environment:
|
48
|
+
- Production
|
49
|
+
Set-Cookie:
|
50
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Thu, 04 Jan 2024 16:37:16 GMT; Secure;
|
51
|
+
SameSite=None
|
52
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.Pfv1AFghhSOM0MLjFpWB8CaOPcNRIjt%2FmCZysEK4KNY;
|
53
|
+
Path=/; Expires=Thu, 28 Dec 2023 16:37:16 GMT; HttpOnly
|
54
|
+
Access-Control-Allow-Origin:
|
55
|
+
- "*"
|
56
|
+
Access-Control-Allow-Methods:
|
57
|
+
- GET, PUT, POST, DELETE
|
58
|
+
Access-Control-Allow-Headers:
|
59
|
+
- Authorization, Accept, Content-Type
|
60
|
+
Access-Control-Expose-Headers:
|
61
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
62
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
63
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
64
|
+
- '10000'
|
65
|
+
X-Rate-Limit-Api-Token-Max:
|
66
|
+
- '100'
|
67
|
+
X-Rate-Limit-Api-Token-Remaining:
|
68
|
+
- '99'
|
69
|
+
X-Rate-Limit-Db-Query-Time-Interval-Ms:
|
70
|
+
- '600000'
|
71
|
+
X-Rate-Limit-Db-Query-Time-Max:
|
72
|
+
- '7200000'
|
73
|
+
X-Rate-Limit-Db-Query-Time-Remaining:
|
74
|
+
- '7199990'
|
75
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
76
|
+
- '10000'
|
77
|
+
X-Rate-Limit-Api-Key-Max:
|
78
|
+
- '300'
|
79
|
+
X-Rate-Limit-Api-Key-Remaining:
|
80
|
+
- '299'
|
81
|
+
X-Rate-Limit-Member-Interval-Ms:
|
82
|
+
- '10000'
|
83
|
+
X-Rate-Limit-Member-Max:
|
84
|
+
- '375'
|
85
|
+
X-Rate-Limit-Member-Remaining:
|
86
|
+
- '374'
|
87
|
+
X-Server-Time:
|
88
|
+
- '1703176636327'
|
89
|
+
Server:
|
90
|
+
- AtlassianEdge
|
91
|
+
X-Content-Type-Options:
|
92
|
+
- nosniff
|
93
|
+
X-Xss-Protection:
|
94
|
+
- 1; mode=block
|
95
|
+
Atl-Traceid:
|
96
|
+
- 86e444b4d8164c4cb68941786ec9ea47
|
97
|
+
Report-To:
|
98
|
+
- '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
|
99
|
+
"endpoint-1", "include_subdomains": true, "max_age": 600}'
|
100
|
+
Nel:
|
101
|
+
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
|
102
|
+
"endpoint-1"}'
|
103
|
+
Strict-Transport-Security:
|
104
|
+
- max-age=63072000; preload
|
105
|
+
body:
|
106
|
+
encoding: UTF-8
|
107
|
+
string: '{"id":"5e93ba154634282b6df23bcc","name":"integrationtest11","displayName":"Integration
|
108
|
+
Test 1","desc":"This is a team for doing integration tests","descData":null,"url":"https://trello.com/w/integrationtest11","website":null,"teamType":"engineering-it","logoHash":null,"logoUrl":null,"offering":"trello.free","products":[],"powerUps":[]}'
|
109
|
+
recorded_at: Thu, 21 Dec 2023 16:37:16 GMT
|
110
|
+
- request:
|
111
|
+
method: get
|
112
|
+
uri: https://api.trello.com/1/organizations/5e93ba154634282b6df23bcc/boards?fields=id,name&filter=open&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
113
|
+
body:
|
114
|
+
encoding: US-ASCII
|
115
|
+
string: ''
|
116
|
+
headers:
|
117
|
+
User-Agent:
|
118
|
+
- Faraday v2.7.11
|
119
|
+
Accept-Encoding:
|
120
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
121
|
+
Accept:
|
122
|
+
- "*/*"
|
123
|
+
response:
|
124
|
+
status:
|
125
|
+
code: 200
|
126
|
+
message: OK
|
127
|
+
headers:
|
128
|
+
Date:
|
129
|
+
- Thu, 21 Dec 2023 16:37:17 GMT
|
130
|
+
Content-Type:
|
131
|
+
- application/json; charset=utf-8
|
132
|
+
Content-Length:
|
133
|
+
- '390'
|
134
|
+
Referrer-Policy:
|
135
|
+
- strict-origin-when-cross-origin
|
136
|
+
X-Dns-Prefetch-Control:
|
137
|
+
- 'off'
|
138
|
+
X-Download-Options:
|
139
|
+
- noopen
|
140
|
+
X-Frame-Options:
|
141
|
+
- DENY
|
142
|
+
X-Permitted-Cross-Domain-Policies:
|
143
|
+
- none
|
144
|
+
Surrogate-Control:
|
145
|
+
- no-store
|
146
|
+
Cache-Control:
|
147
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
148
|
+
Pragma:
|
149
|
+
- no-cache
|
150
|
+
Expires:
|
151
|
+
- Thu, 01 Jan 1970 00:00:00
|
152
|
+
X-Trello-Version:
|
153
|
+
- 1.249073.0
|
154
|
+
X-Trello-Environment:
|
155
|
+
- Production
|
156
|
+
Set-Cookie:
|
157
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Thu, 04 Jan 2024 16:37:17 GMT; Secure;
|
158
|
+
SameSite=None
|
159
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.Pfv1AFghhSOM0MLjFpWB8CaOPcNRIjt%2FmCZysEK4KNY;
|
160
|
+
Path=/; Expires=Thu, 28 Dec 2023 16:37:17 GMT; HttpOnly
|
161
|
+
Access-Control-Allow-Origin:
|
162
|
+
- "*"
|
163
|
+
Access-Control-Allow-Methods:
|
164
|
+
- GET, PUT, POST, DELETE
|
165
|
+
Access-Control-Allow-Headers:
|
166
|
+
- Authorization, Accept, Content-Type
|
167
|
+
Access-Control-Expose-Headers:
|
168
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
169
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
170
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
171
|
+
- '10000'
|
172
|
+
X-Rate-Limit-Api-Token-Max:
|
173
|
+
- '100'
|
174
|
+
X-Rate-Limit-Api-Token-Remaining:
|
175
|
+
- '98'
|
176
|
+
X-Rate-Limit-Db-Query-Time-Interval-Ms:
|
177
|
+
- '600000'
|
178
|
+
X-Rate-Limit-Db-Query-Time-Max:
|
179
|
+
- '7200000'
|
180
|
+
X-Rate-Limit-Db-Query-Time-Remaining:
|
181
|
+
- '7199990'
|
182
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
183
|
+
- '10000'
|
184
|
+
X-Rate-Limit-Api-Key-Max:
|
185
|
+
- '300'
|
186
|
+
X-Rate-Limit-Api-Key-Remaining:
|
187
|
+
- '298'
|
188
|
+
X-Rate-Limit-Member-Interval-Ms:
|
189
|
+
- '10000'
|
190
|
+
X-Rate-Limit-Member-Max:
|
191
|
+
- '375'
|
192
|
+
X-Rate-Limit-Member-Remaining:
|
193
|
+
- '373'
|
194
|
+
X-Server-Time:
|
195
|
+
- '1703176637457'
|
196
|
+
X-Trello-Actual-Fastget-Path:
|
197
|
+
- fast
|
198
|
+
Server:
|
199
|
+
- AtlassianEdge
|
200
|
+
X-Content-Type-Options:
|
201
|
+
- nosniff
|
202
|
+
X-Xss-Protection:
|
203
|
+
- 1; mode=block
|
204
|
+
Atl-Traceid:
|
205
|
+
- eaf61abfea77472fa7c51b033e902104
|
206
|
+
Report-To:
|
207
|
+
- '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
|
208
|
+
"endpoint-1", "include_subdomains": true, "max_age": 600}'
|
209
|
+
Nel:
|
210
|
+
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
|
211
|
+
"endpoint-1"}'
|
212
|
+
Strict-Transport-Security:
|
213
|
+
- max-age=63072000; preload
|
214
|
+
body:
|
215
|
+
encoding: UTF-8
|
216
|
+
string: '[{"id":"5ee65e305081b1306530df45","name":"IT 100"},{"id":"5ee65e31325f0d0a10726e6e","name":"IT
|
217
|
+
101"},{"id":"5e93ba98614ac22d22f085c4","name":"IT 2"},{"id":"5e94eaf386374970d06e4c89","name":"IT
|
218
|
+
3"},{"id":"5e94ee7357ac8a3edc2b2145","name":"IT 4"},{"id":"5e94f5ded016b22c2437c13c","name":"IT
|
219
|
+
5"},{"id":"5fa757c864083f6464d25346","name":"IT 6"},{"id":"5ee65f5fa64d6f2a7aee514c","name":"IT
|
220
|
+
99"}]'
|
221
|
+
recorded_at: Thu, 21 Dec 2023 16:37:17 GMT
|
222
|
+
recorded_with: VCR 6.0.0
|
@@ -12,6 +12,28 @@ RSpec.describe 'Trello::Organization#boards' do
|
|
12
12
|
|
13
13
|
expect(boards).to be_a(Array)
|
14
14
|
expect(boards[0]).to be_a(Trello::Board)
|
15
|
+
boards.each do |board|
|
16
|
+
expect(board.id).not_to be_nil
|
17
|
+
expect(board.name).not_to be_nil
|
18
|
+
expect(board.pinned).not_to be_nil
|
19
|
+
expect(board.url).not_to be_nil
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'can get boards with filter and specific fields' do
|
25
|
+
VCR.use_cassette('can_get_boards_with_filter_of_organization') do
|
26
|
+
organization = Trello::Organization.find('5e93ba154634282b6df23bcc')
|
27
|
+
boards = organization.boards(filter: "open", fields: "id,name")
|
28
|
+
|
29
|
+
expect(boards).to be_a(Array)
|
30
|
+
expect(boards[0]).to be_a(Trello::Board)
|
31
|
+
boards.each do |board|
|
32
|
+
expect(board.id).not_to be_nil
|
33
|
+
expect(board.name).not_to be_nil
|
34
|
+
expect(board.pinned).to be_nil
|
35
|
+
expect(board.url).to be_nil
|
36
|
+
end
|
15
37
|
end
|
16
38
|
end
|
17
39
|
|
data/spec/notification_spec.rb
CHANGED
@@ -37,7 +37,7 @@ module Trello
|
|
37
37
|
it "can retrieve the board" do
|
38
38
|
allow(client)
|
39
39
|
.to receive(:get)
|
40
|
-
.with("/notifications/#{notification_details['id']}/board")
|
40
|
+
.with("/notifications/#{notification_details['id']}/board", {})
|
41
41
|
.and_return JSON.generate(boards_details.first)
|
42
42
|
|
43
43
|
expect(notification.board.id).to eq boards_details.first['id']
|
@@ -48,7 +48,7 @@ module Trello
|
|
48
48
|
it "can retrieve the list" do
|
49
49
|
allow(client)
|
50
50
|
.to receive(:get)
|
51
|
-
.with("/notifications/#{notification_details['id']}/list")
|
51
|
+
.with("/notifications/#{notification_details['id']}/list", {})
|
52
52
|
.and_return JSON.generate(lists_details.first)
|
53
53
|
|
54
54
|
expect(notification.list.id).to eq lists_details.first['id']
|
@@ -59,7 +59,7 @@ module Trello
|
|
59
59
|
it "can retrieve the card" do
|
60
60
|
allow(client)
|
61
61
|
.to receive(:get)
|
62
|
-
.with("/notifications/#{notification_details['id']}/card")
|
62
|
+
.with("/notifications/#{notification_details['id']}/card", {})
|
63
63
|
.and_return JSON.generate(cards_details.first)
|
64
64
|
|
65
65
|
expect(notification.card.id).to eq cards_details.first['id']
|
@@ -70,7 +70,7 @@ module Trello
|
|
70
70
|
it "can retrieve the member" do
|
71
71
|
allow(client)
|
72
72
|
.to receive(:get)
|
73
|
-
.with("/notifications/#{notification_details['id']}/member")
|
73
|
+
.with("/notifications/#{notification_details['id']}/member", {})
|
74
74
|
.and_return user_payload
|
75
75
|
|
76
76
|
expect(notification.member.id).to eq user_details['id']
|
@@ -90,7 +90,7 @@ module Trello
|
|
90
90
|
it "can retrieve the organization" do
|
91
91
|
allow(client)
|
92
92
|
.to receive(:get)
|
93
|
-
.with("/notifications/#{notification_details['id']}/organization")
|
93
|
+
.with("/notifications/#{notification_details['id']}/organization", {})
|
94
94
|
.and_return JSON.generate(orgs_details.first)
|
95
95
|
|
96
96
|
expect(notification.organization.id).to eq orgs_details.first['id']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-trello
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Tregunna
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -207,6 +207,7 @@ files:
|
|
207
207
|
- spec/cassettes/can_get_boards_of_custom_field.yml
|
208
208
|
- spec/cassettes/can_get_boards_of_label.yml
|
209
209
|
- spec/cassettes/can_get_boards_of_organization.yml
|
210
|
+
- spec/cassettes/can_get_boards_with_filter_of_organization.yml
|
210
211
|
- spec/cassettes/can_get_cards_of_board.yml
|
211
212
|
- spec/cassettes/can_get_cards_of_list.yml
|
212
213
|
- spec/cassettes/can_get_cards_of_member.yml
|
@@ -515,6 +516,7 @@ test_files:
|
|
515
516
|
- spec/cassettes/can_get_boards_of_custom_field.yml
|
516
517
|
- spec/cassettes/can_get_boards_of_label.yml
|
517
518
|
- spec/cassettes/can_get_boards_of_organization.yml
|
519
|
+
- spec/cassettes/can_get_boards_with_filter_of_organization.yml
|
518
520
|
- spec/cassettes/can_get_cards_of_board.yml
|
519
521
|
- spec/cassettes/can_get_cards_of_list.yml
|
520
522
|
- spec/cassettes/can_get_cards_of_member.yml
|