monday_ruby 0.6.2 → 1.1.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.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.env +1 -1
  3. data/.rspec +0 -1
  4. data/.rubocop.yml +18 -0
  5. data/.simplecov +1 -0
  6. data/CHANGELOG.md +55 -0
  7. data/CONTRIBUTING.md +61 -0
  8. data/README.md +97 -51
  9. data/lib/monday/client.rb +30 -12
  10. data/lib/monday/configuration.rb +8 -0
  11. data/lib/monday/deprecation.rb +23 -0
  12. data/lib/monday/error.rb +5 -2
  13. data/lib/monday/request.rb +4 -1
  14. data/lib/monday/resources/account.rb +6 -4
  15. data/lib/monday/resources/activity_log.rb +7 -5
  16. data/lib/monday/resources/base.rb +20 -0
  17. data/lib/monday/resources/board.rb +71 -17
  18. data/lib/monday/resources/board_view.rb +6 -4
  19. data/lib/monday/resources/column.rb +28 -20
  20. data/lib/monday/resources/folder.rb +55 -0
  21. data/lib/monday/resources/group.rb +84 -16
  22. data/lib/monday/resources/item.rb +77 -13
  23. data/lib/monday/resources/subitem.rb +8 -6
  24. data/lib/monday/resources/update.rb +13 -11
  25. data/lib/monday/resources/workspace.rb +10 -8
  26. data/lib/monday/resources.rb +16 -20
  27. data/lib/monday/util.rb +33 -1
  28. data/lib/monday/version.rb +1 -1
  29. data/lib/monday_ruby.rb +1 -0
  30. metadata +22 -48
  31. data/docs/README.md +0 -13
  32. data/docs/SUMMARY.md +0 -40
  33. data/docs/client.md +0 -15
  34. data/docs/configuration.md +0 -40
  35. data/docs/error-handling.md +0 -71
  36. data/docs/getting-started.md +0 -25
  37. data/docs/quick-start.md +0 -269
  38. data/docs/resources/README.md +0 -27
  39. data/docs/resources/account/README.md +0 -9
  40. data/docs/resources/account/accounts.md +0 -82
  41. data/docs/resources/activity-log/README.md +0 -9
  42. data/docs/resources/activity-log/activity_logs.md +0 -95
  43. data/docs/resources/board/README.md +0 -21
  44. data/docs/resources/board/archive_board.md +0 -79
  45. data/docs/resources/board/boards.md +0 -96
  46. data/docs/resources/board/create_board.md +0 -95
  47. data/docs/resources/board/delete_board.md +0 -79
  48. data/docs/resources/board/delete_board_subscribers.md +0 -87
  49. data/docs/resources/board/duplicate_board.md +0 -94
  50. data/docs/resources/board/update_board.md +0 -91
  51. data/docs/resources/board-view/README.md +0 -9
  52. data/docs/resources/board-view/board_views.md +0 -88
  53. data/docs/resources/column/README.md +0 -25
  54. data/docs/resources/column/change_column_metadata.md +0 -70
  55. data/docs/resources/column/change_column_title.md +0 -68
  56. data/docs/resources/column/change_column_value.md +0 -73
  57. data/docs/resources/column/change_multiple_column_value.md +0 -81
  58. data/docs/resources/column/change_simple_column_value.md +0 -69
  59. data/docs/resources/column/column_values.md +0 -115
  60. data/docs/resources/column/columns.md +0 -117
  61. data/docs/resources/column/create_column.md +0 -70
  62. data/docs/resources/column/delete_column.md +0 -58
  63. data/docs/resources/item/README.md +0 -17
  64. data/docs/resources/item/archive_item.md +0 -80
  65. data/docs/resources/item/create_item.md +0 -105
  66. data/docs/resources/item/delete_item.md +0 -80
  67. data/docs/resources/item/duplicate_item.md +0 -87
  68. data/docs/resources/item/items.md +0 -95
  69. data/docs/response.md +0 -21
  70. data/monday_ruby.gemspec +0 -37
@@ -1,95 +0,0 @@
1
- # #create\_board
2
-
3
- The `create_board` mutation will allow you to create a new board.
4
-
5
- ### Basic usage
6
-
7
- This method accepts various arguments to create a board. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/boards#arguments-1).
8
-
9
- You can pass these filters using the `args` option.
10
-
11
- {% code lineNumbers="true" %}
12
- ```ruby
13
- client = Monday::Client.new(token: <AUTH_TOKEN>)
14
-
15
- args = {
16
- board_name: "New test board",
17
- board_kind: "public",
18
- description: "The description for the board"
19
- }
20
- response = client.create_board(args: args)
21
-
22
- puts response.body
23
- ```
24
- {% endcode %}
25
-
26
- This will create a private board with the name "New test board" and description "The description for the board" on the account.
27
-
28
- This will return the boards' ID, name and description fields by default.
29
-
30
- The response body from the above query would be as follows:
31
-
32
- {% code lineNumbers="true" %}
33
- ```json
34
- {
35
- "data": {
36
- "create_board": {
37
- "id": "456",
38
- "name": "New test board",
39
- "description": "The description for the board"
40
- }
41
- },
42
- "account_id": 123
43
- }
44
- ```
45
- {% endcode %}
46
-
47
- ### Customizing fields to retrieve
48
-
49
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
50
-
51
- {% code lineNumbers="true" %}
52
- ```ruby
53
- client = Monday::Client.new(token: <AUTH_TOKEN>)
54
-
55
- args = {
56
- board_name: "New test board",
57
- board_kind: "public",
58
- description: "The description for the board"
59
- }
60
- select = %w[id name description items_count permissions]
61
-
62
- response = client.create_board(args: args, select: select)
63
-
64
- puts response.body
65
- ```
66
- {% endcode %}
67
-
68
- ### Retrieving nested fields
69
-
70
- Some fields have nested attributes, and you need to specify the attributes to retrieve that field; else, the API will respond with an error.
71
-
72
- {% code lineNumbers="true" %}
73
- ```ruby
74
- client = Monday::Client.new(token: <AUTH_TOKEN>)
75
-
76
- args = {
77
- board_name: "New test board",
78
- board_kind: "public",
79
- description: "The description for the board"
80
- }
81
- select = [
82
- "id",
83
- "name",
84
- {
85
- creator: %w[id name email is_admin]
86
- }
87
- ]
88
-
89
- response = client.create_board(args: args, select: select)
90
-
91
- puts response.body
92
- ```
93
- {% endcode %}
94
-
95
- You can find the list of all the available fields for boards [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,79 +0,0 @@
1
- # #delete\_board
2
-
3
- The `delete_board` mutation will allow you to delete a board.
4
-
5
- ### Basic usage
6
-
7
- This method accepts one required argument - `board_id`.
8
-
9
- {% code lineNumbers="true" %}
10
- ```ruby
11
- client = Monday::Client.new(token: <AUTH_TOKEN>)
12
-
13
- board_id = 789
14
- response = client.delete_board(board_id)
15
-
16
- puts response.body
17
- ```
18
- {% endcode %}
19
-
20
- This will delete the `789` board.
21
-
22
- This will return the board's ID by default.
23
-
24
- The response body from the above query would be as follows:
25
-
26
- {% code lineNumbers="true" %}
27
- ```json
28
- {
29
- "data": {
30
- "delete_board": {
31
- "id": "789"
32
- }
33
- },
34
- "account_id": 123
35
- }
36
- ```
37
- {% endcode %}
38
-
39
- ### Customizing fields to retrieve
40
-
41
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
42
-
43
- {% code lineNumbers="true" %}
44
- ```ruby
45
- client = Monday::Client.new(token: <AUTH_TOKEN>)
46
-
47
- board_id = 789
48
- select = %w[id name description items_count permissions]
49
-
50
- response = client.delete_board(board_id, select: select)
51
-
52
- puts response.body
53
- ```
54
- {% endcode %}
55
-
56
- ### Retrieving nested fields
57
-
58
- Some fields have nested attributes, and you need to specify the attributes to retrieve that field; else, the API will respond with an error.
59
-
60
- {% code lineNumbers="true" %}
61
- ```ruby
62
- client = Monday::Client.new(token: <AUTH_TOKEN>)
63
-
64
- board_id = 789
65
- select = [
66
- "id",
67
- "name",
68
- {
69
- creator: %w[id name email is_admin]
70
- }
71
- ]
72
-
73
- response = client.delete_board(board_id, select: select)
74
-
75
- puts response.body
76
- ```
77
- {% endcode %}
78
-
79
- You can find the list of all the available fields for boards [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,87 +0,0 @@
1
- # #delete\_board\_subscribers
2
-
3
- The `delete_board_subscribers` mutation will allow you to delete subscribers from a board.
4
-
5
- ### Basic usage
6
-
7
- This method accepts two required parameters - `board_id` and `user_ids`.
8
-
9
- {% code lineNumbers="true" %}
10
- ```ruby
11
- client = Monday::Client.new(token: <AUTH_TOKEN>)
12
-
13
- board_id = 789
14
- user_ids = [123, 456]
15
- response = client.delete_board_subscribers(board_id, user_ids)
16
-
17
- puts response.body
18
- ```
19
- {% endcode %}
20
-
21
- This will delete `123` and `456` subscribers from the `789` board.
22
-
23
- This will return the deleted subscriber's ID by default.
24
-
25
- The response body from the above query would be as follows:
26
-
27
- {% code lineNumbers="true" %}
28
- ```json
29
- {
30
- "data": {
31
- "delete_subscribers_from_board": [
32
- {
33
- "id": 123
34
- },
35
- {
36
- "id": 456
37
- }
38
- ]
39
- },
40
- "account_id": 123
41
- }
42
- ```
43
- {% endcode %}
44
-
45
- ### Customizing fields to retrieve
46
-
47
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
48
-
49
- {% code lineNumbers="true" %}
50
- ```ruby
51
- client = Monday::Client.new(token: <AUTH_TOKEN>)
52
-
53
- board_id = 789
54
- user_ids = [123, 456]
55
- select = %w[id name is_guest is_admin]
56
-
57
- response = client.delete_board_subscribers(board_id, user_ids, select: select)
58
-
59
- puts response.body
60
- ```
61
- {% endcode %}
62
-
63
- ### Retrieving nested fields
64
-
65
- Some fields have nested attributes, and you need to specify the attributes to retrieve that field; else, the API will respond with an error.
66
-
67
- {% code lineNumbers="true" %}
68
- ```ruby
69
- client = Monday::Client.new(token: <AUTH_TOKEN>)
70
-
71
- board_id = 789
72
- user_ids = [123, 456]
73
- select = [
74
- "id",
75
- "name",
76
- {
77
- account: %w[id slug tier]
78
- }
79
- ]
80
-
81
- response = client.delete_board_subscribers(board_id, user_ids, select: select)
82
-
83
- puts response.body
84
- ```
85
- {% endcode %}
86
-
87
- You can find the list of all the available fields for boards [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,94 +0,0 @@
1
- # #duplicate\_board
2
-
3
- The `duplicate_board` mutation will allow you to duplicate a board with all its items and groups to a workspace or folder of your choice.
4
-
5
- ### Basic usage
6
-
7
- This method accepts various arguments to duplicate a board. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/boards#arguments-2).
8
-
9
- You can pass these filters using the `args` option.
10
-
11
- {% code lineNumbers="true" %}
12
- ```ruby
13
- client = Monday::Client.new(token: <AUTH_TOKEN>)
14
-
15
- args = {
16
- board_id: 456,
17
- duplicate_type: "duplicate_board_with_structure"
18
- }
19
- response = client.duplicate_board(args: args)
20
-
21
- puts response.body
22
- ```
23
- {% endcode %}
24
-
25
- This will duplicate the board `456`.
26
-
27
- This will return the boards' ID, name and description fields by default.
28
-
29
- The response body from the above query would be as follows:
30
-
31
- {% code lineNumbers="true" %}
32
- ```json
33
- {
34
- "data": {
35
- "duplicate_board": {
36
- "board": {
37
- "id": "789",
38
- "name": "Duplicate of New test board",
39
- "description": "The description for the board"
40
- }
41
- }
42
- },
43
- "account_id": 123
44
- }
45
- ```
46
- {% endcode %}
47
-
48
- ### Customizing fields to retrieve
49
-
50
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
51
-
52
- {% code lineNumbers="true" %}
53
- ```ruby
54
- client = Monday::Client.new(token: <AUTH_TOKEN>)
55
-
56
- args = {
57
- board_id: 456,
58
- duplicate_type: "duplicate_board_with_structure"
59
- }
60
- select = %w[id name description items_count permissions]
61
-
62
- response = client.duplicate_board(args: args, select: select)
63
-
64
- puts response.body
65
- ```
66
- {% endcode %}
67
-
68
- ### Retrieving nested fields
69
-
70
- Some fields have nested attributes, and you need to specify the attributes to retrieve that field; else, the API will respond with an error.
71
-
72
- {% code lineNumbers="true" %}
73
- ```ruby
74
- client = Monday::Client.new(token: <AUTH_TOKEN>)
75
-
76
- args = {
77
- board_id: 456,
78
- duplicate_type: "duplicate_board_with_structure"
79
- }
80
- select = [
81
- "id",
82
- "name",
83
- {
84
- creator: %w[id name email is_admin]
85
- }
86
- ]
87
-
88
- response = client.duplicate_board(args: args, select: select)
89
-
90
- puts response.body
91
- ```
92
- {% endcode %}
93
-
94
- You can find the list of all the available fields for boards [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,91 +0,0 @@
1
- # #update\_board
2
-
3
- The `update_board` mutation will allow you to update a board.
4
-
5
- ### Basic usage
6
-
7
- This method accepts various arguments to duplicate a board. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/boards#arguments-3).
8
-
9
- You can pass these filters using the `args` option.
10
-
11
- {% code lineNumbers="true" %}
12
- ```ruby
13
- client = Monday::Client.new(token: <AUTH_TOKEN>)
14
-
15
- args = {
16
- board_id: 789,
17
- board_attribute: "description",
18
- new_value: "Updated description"
19
- }
20
- response = client.update_board(args: args)
21
-
22
- puts response.body
23
- ```
24
- {% endcode %}
25
-
26
- This will update board `789`'s description.
27
-
28
- This will return the boards' ID, name and description fields by default.
29
-
30
- The response body from the above query would be as follows:
31
-
32
- {% code lineNumbers="true" %}
33
- ```json
34
- {
35
- "data": {
36
- "update_board": "{\"success\":true,\"undo_data\":{\"undo_record_id\":65894,\"action_type\":\"modify_project\",\"entity_type\":\"Board\",\"entity_id\":789,\"count\":1}}"
37
- },
38
- "account_id": 123
39
- }
40
- ```
41
- {% endcode %}
42
-
43
- ### Customizing fields to retrieve
44
-
45
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
46
-
47
- {% code lineNumbers="true" %}
48
- ```ruby
49
- client = Monday::Client.new(token: <AUTH_TOKEN>)
50
-
51
- args = {
52
- board_id: 789,
53
- board_attribute: "description",
54
- new_value: "Updated description"
55
- }
56
- select = %w[id name description items_count permissions]
57
-
58
- response = client.update_board(args: args, select: select)
59
-
60
- puts response.body
61
- ```
62
- {% endcode %}
63
-
64
- ### Retrieving nested fields
65
-
66
- Some fields have nested attributes, and you need to specify the attributes to retrieve that field; else, the API will respond with an error.
67
-
68
- {% code lineNumbers="true" %}
69
- ```ruby
70
- client = Monday::Client.new(token: <AUTH_TOKEN>)
71
-
72
- args = {
73
- board_id: 789,
74
- board_attribute: "description",
75
- new_value: "Updated description"
76
- }
77
- select = [
78
- "id",
79
- "name",
80
- {
81
- creator: %w[id name email is_admin]
82
- }
83
- ]
84
-
85
- response = client.update_board(args: args, select: select)
86
-
87
- puts response.body
88
- ```
89
- {% endcode %}
90
-
91
- You can find the list of all the available fields for boards [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,9 +0,0 @@
1
- # Board View
2
-
3
- The board view API is used to access the board view data. It includes the following methods:
4
-
5
- [board\_views.md](board\_views.md "mention")
6
-
7
- {% hint style="info" %}
8
- Visit monday.com's API documentation to know more about the [board views API](https://developer.monday.com/api-reference/docs/board-view-queries).
9
- {% endhint %}
@@ -1,88 +0,0 @@
1
- # #board\_views
2
-
3
- Querying `board_views` will return a collection of board views from a specific board.
4
-
5
- ### Basic usage
6
-
7
- {% code lineNumbers="true" %}
8
- ```ruby
9
- client = Monday::Client.new(token: <AUTH_TOKEN>)
10
-
11
- response = client.board_views
12
-
13
- puts response.body
14
- ```
15
- {% endcode %}
16
-
17
- This will return the board views' ID, name and type fields by default.
18
-
19
- The response body from the above query would be as follows:
20
-
21
- {% code lineNumbers="true" %}
22
- ```json
23
- {
24
- "data": {
25
- "boards": [
26
- {
27
- "views" : [
28
- {
29
- "type": "FormBoardView",
30
- "name": "Contact Form",
31
- "id": "55567306"
32
- },
33
- {
34
- "type": "ItemsGalleryBoardView",
35
- "name": "Cards",
36
- "id": "212647324"
37
- },
38
- {
39
- "type": "KanbanBoardView",
40
- "name": "Kanban",
41
- "id": "212644479"
42
- }
43
- ]
44
- }
45
- ]
46
- },
47
- "account_id": 123
48
- }
49
- ```
50
- {% endcode %}
51
-
52
- ### Filtering board views
53
-
54
- This method accepts various arguments to filter down the views. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/board-view-queries#arguments).
55
-
56
- You can pass these filters using the `args` option.
57
-
58
- {% code lineNumbers="true" %}
59
- ```ruby
60
- client = Monday::Client.new(token: <AUTH_TOKEN>)
61
-
62
- args = {
63
- ids: [123, 456]
64
- }
65
- response = client.board_views(args: args)
66
-
67
- puts response.body
68
- ```
69
- {% endcode %}
70
-
71
- This will filter and return the views for boards `123` and `456`.
72
-
73
- ### Customizing fields to retrieve
74
-
75
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
76
-
77
- {% code lineNumbers="true" %}
78
- ```ruby
79
- client = Monday::Client.new(token: <AUTH_TOKEN>)
80
-
81
- select = %w[id name settings_str type]
82
- response = client.board_views(select: select)
83
-
84
- puts response.body
85
- ```
86
- {% endcode %}
87
-
88
- You can find the list of all the available fields for board views [here](https://developer.monday.com/api-reference/docs/board-view-queries#fields).
@@ -1,25 +0,0 @@
1
- # Column
2
-
3
- The column API is used to access and mutate the columns. It includes the following methods:
4
-
5
- [columns.md](columns.md "mention")
6
-
7
- [column\_values.md](column\_values.md "mention")
8
-
9
- [create\_column.md](create\_column.md "mention")
10
-
11
- [change\_column\_title.md](change\_column\_title.md "mention")
12
-
13
- [change\_column\_metadata.md](change\_column\_metadata.md "mention")
14
-
15
- [change\_column\_value.md](change\_column\_value.md "mention")
16
-
17
- [change\_simple\_column\_value.md](change\_simple\_column\_value.md "mention")
18
-
19
- [change\_multiple\_column\_value.md](change\_multiple\_column\_value.md "mention")
20
-
21
- [delete\_column.md](delete\_column.md "mention")
22
-
23
- {% hint style="info" %}
24
- Visit monday.com's API documentation to know more about the [columns API](https://developer.monday.com/api-reference/docs/columns).
25
- {% endhint %}
@@ -1,70 +0,0 @@
1
- # #change\_column\_metadata
2
-
3
- The `change_column_metadata` mutation will allow you to update the metadata of a column.
4
-
5
- ### Basic usage
6
-
7
- This method accepts various arguments to update a column's metadata. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/columns#arguments-7).
8
-
9
- You can pass these filters using the `args` option.
10
-
11
- {% code lineNumbers="true" %}
12
- ```ruby
13
- client = Monday::Client.new(token: <AUTH_TOKEN>)
14
-
15
- args = {
16
- board_id: 123,
17
- column_id: "status",
18
- column_property: "description",
19
- value: "Updated status column description"
20
- }
21
- response = client.change_column_metadata(args: args)
22
-
23
- puts response.body
24
- ```
25
- {% endcode %}
26
-
27
- This will update the description for the `status` column on `123` board to "Updated status column description".
28
-
29
- This will return the columns' ID, title and description fields by default.
30
-
31
- The response body from the above query would be as follows:
32
-
33
- {% code lineNumbers="true" %}
34
- ```json
35
- {
36
- "data": {
37
- "change_column_metadata": {
38
- "id": "status",
39
- "title": "New Work Status",
40
- "description": "Updated status column description"
41
- }
42
- },
43
- "account_id": 123
44
- }
45
- ```
46
- {% endcode %}
47
-
48
- ### Customizing fields to retrieve
49
-
50
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
51
-
52
- {% code lineNumbers="true" %}
53
- ```ruby
54
- client = Monday::Client.new(token: <AUTH_TOKEN>)
55
-
56
- args = {
57
- board_id: 123,
58
- column_id: "status",
59
- column_property: "description",
60
- value: "Updated status column description"
61
- }
62
- select = %w[id archived width settings_str]
63
-
64
- response = client.change_column_metadata(args: args, select: select)
65
-
66
- puts response.body
67
- ```
68
- {% endcode %}
69
-
70
- You can find the list of all the available fields for columns [here](https://developer.monday.com/api-reference/docs/columns#fields).
@@ -1,68 +0,0 @@
1
- # #change\_column\_title
2
-
3
- The `change_column_title` mutation will allow you to update a column's title.
4
-
5
- ### Basic usage
6
-
7
- This method accepts various arguments to update a column's title. You can find the complete list of arguments [here](https://developer.monday.com/api-reference/docs/columns#arguments-6).
8
-
9
- You can pass these filters using the `args` option.
10
-
11
- {% code lineNumbers="true" %}
12
- ```ruby
13
- client = Monday::Client.new(token: <AUTH_TOKEN>)
14
-
15
- args = {
16
- board_id: 123,
17
- column_id: "status",
18
- title: "New Work Status"
19
- }
20
- response = client.change_column_title(args: args)
21
-
22
- puts response.body
23
- ```
24
- {% endcode %}
25
-
26
- This will update the column title for the `status` column on `123` board to "New Work Status".
27
-
28
- This will return the columns' ID, title and description fields by default.
29
-
30
- The response body from the above query would be as follows:
31
-
32
- {% code lineNumbers="true" %}
33
- ```json
34
- {
35
- "data": {
36
- "change_column_title": {
37
- "id": "status",
38
- "title": "New Work Status",
39
- "description": "Status Column"
40
- }
41
- },
42
- "account_id": 123
43
- }
44
- ```
45
- {% endcode %}
46
-
47
- ### Customizing fields to retrieve
48
-
49
- You can customize the fields to retrieve by passing in the `select` option and listing all the fields you need to retrieve as an array.
50
-
51
- {% code lineNumbers="true" %}
52
- ```ruby
53
- client = Monday::Client.new(token: <AUTH_TOKEN>)
54
-
55
- args = {
56
- board_id: 123,
57
- column_id: "status",
58
- title: "New Work Status"
59
- }
60
- select = %w[id archived width settings_str]
61
-
62
- response = client.change_column_title(args: args, select: select)
63
-
64
- puts response.body
65
- ```
66
- {% endcode %}
67
-
68
- You can find the list of all the available fields for columns [here](https://developer.monday.com/api-reference/docs/columns#fields).