Make GET request on this endpoint to activity logs with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//activityLogs
Object | Description |
---|---|
boardIds |
[Optional] boards ids, if you want to filter by borad |
limit |
[Optional] The number of activity log events returned. Default is 25. |
page |
[Optional] The page number returned, should you implement pagination. Starts at 1. |
user_ids |
[Optional] User IDs that can be used to filter the events returned. |
column_ids |
[Optional] Column IDs that can be used to filter the events returned. |
group_ids |
[Optional] Group IDs that can be used to filter the events returned. |
item_ids |
[Optional] Item IDs that can be used to filter the events returned. |
from |
[Optional] From timestamp (ISO8601). |
to |
[Optional] To timestamp (ISO8601). |
Make GET request on this endpoint to boards with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//boards
Object | Description |
---|---|
boardIds |
[Optional] boards ids, if you want to filter by borad |
limit |
[Optional] The number of activity log events returned. Default is 25. |
page |
[Optional] The page number returned, should you implement pagination. Starts at 1. |
board_kind |
[Optional] The board's kind (public / private / share). |
state |
[Optional] The state of the board (all / active / archived / deleted). Default is active. |
order_by |
[Optional] The order in which to retrieve your boards (created_at / used_at). |
Make GET request on this endpoint to boards views with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//boardViews
Make POST request on this endpoint to create board with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//createBoard
Object | Description |
---|---|
boardName |
[Required] The name of the created board. |
boardKind |
[Optional] The created board's kind (public / private / share). |
folderId |
[Optional] The board's folder id. |
workspaceId |
[Optional] The board's workspace id. |
templateId |
[Optional] The board's template id |
Make POST request on this endpoint to archive board with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//archiveBoard
Object | Description |
---|---|
boardId |
[Required] Board id to archive |
Make POST request on this endpoint to add subscribers with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//addSubscribers
Object | Description |
---|---|
boardId |
[Required] The board's unique identifier. |
userIds |
[Required] User ids to subscribe to the board. |
kind |
[Optional] Subscribers kind (subscriber / owner). |
Make POST request on this endpoint to remove subscribers with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//removeSubscribers
Object | Description |
---|---|
boardId |
[Required] The board's unique identifier. |
userIds |
[Required] User ids to subscribe to the board. |
Make GET request on this endpoint to columns with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//columns
Object | Description |
---|---|
boardId |
[Required] board id |
Make GET request on this endpoint to column values with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//columnValues
Object | Description |
---|---|
limit |
[Optional] The number of activity log events returned. Default is 25. |
page |
[Optional] The page number returned, should you implement pagination. Starts at 1. |
Make GET request on this endpoint to files with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//files
Object | Description |
---|---|
assetsIds |
[Optional] assets id seprated by commas |
Make GET request on this endpoint to get items with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//items
Object | Description |
---|---|
itemsIds |
[Required] A list of unique items identifier(s). |
limit |
[Optional] The number of items returned. Default is 25. |
page |
[Optional] The page number returned, should you implement pagination. Starts at 1. |
Make GET request on this endpoint to items by column values with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//itemsByColValues
Object | Description |
---|---|
boardId |
[Required] The board's unique identifier. |
columnId |
[Required] The column's unique identifier. |
columnValue |
[Required] The column value to search items by. You can use text values for the search. |
limit |
[Optional] The number of items returned. Default is 25. |
page |
[Optional] The page number returned, should you implement pagination. Starts at 1. |
Make GET request on this endpoint to users with required parameters(if any required).
https://v1.nocodeapi.com//mondaydotcom//users
Object | Description |
---|---|
user_ids |
[Optional] User IDs that can be used to filter the users returned. |
limit |
[Optional] The number of users returned. Default is 25. |