ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
Task 1: Створити дошку. В документації розділ “Boards”, підрозділ “Create a Board”.
2
3
MethodURL-запит з усіма path і query параметрами (вставте посилання в біле поле знизу)
4
POSThttps://api.trello.com/1/boards/?name=BOARD&key={{apiKey}}&token={{apoToken}}
5
6
Response Body (вставте код в біле поле праворуч){
"id": "67ab79af5341d82a5aa23495",
"name": "BOARD",
"desc": "",
"descData": null,
"closed": false,
"idOrganization": "67a9f63d0607573c992798ba",
"idEnterprise": null,
"pinned": false,
"url": "https://trello.com/b/ccX0tM0E/board",
"shortUrl": "https://trello.com/b/ccX0tM0E",
"prefs": {
"permissionLevel": "private",
"hideVotes": false,
"voting": "disabled",
"comments": "members",
"invitations": "members",
"selfJoin": true,
"cardCovers": true,
"showCompleteStatus": 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",
"backgroundDarkColor": null,
"backgroundImage": null,
"backgroundDarkImage": null,
"backgroundImageScaled": null,
"backgroundTile": false,
"backgroundBrightness": "dark",
"sharedSourceUrl": null,
"backgroundBottomColor": "#0079BF",
"backgroundTopColor": "#0079BF",
"canBePublic": false,
"canBeEnterprise": false,
"canBeOrg": false,
"canBePrivate": false,
"canInvite": true
},
"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": ""
},
"limits": {}
}
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100