How to Retrieve Item ID for Automation in <http://Monday.com|Monday.com>?

This topic was automatically generated from Slack. You can find the original thread here.

hii team i want to create an automation with monday.com so i can get all data board i created a script the problem i can’t get item id so i can get the data of my board element there’s any solution

can you help?

hii team i want to create an automation with monday.com so i can get all data board i created a script the problem i can’t get item id so i can get the data of my board element there’s any solution

To create an automation with monday.com to get all data from a board, you can use Pipedream’s integration with monday.com. If you’re having trouble retrieving the item ID, you can follow these steps to ensure you’re getting the correct data: 1. Connect to monday.com: Make sure you have connected your monday.com account to Pipedream. You can do this by selecting the monday.com app in the Pipedream UI and entering your API key. 2. Use the monday.com API: You can use the monday.com API to query for board data. Here’s an example of how you can use Pipedream to make a request to the monday.com API to get board items: ```
import { axios } from “@pipedream/platform”; export default defineComponent({ props: { monday: { type: “app”, app: “monday”, }, boardId: { type: “string”, label: “Board ID”, }, }, async run({ steps, $ }) { const query = query { boards(ids: ${this.boardId}) { items { id name column_values { id value } } } } ; const response = await axios($, { url: “https://api.monday.com/v2”, method: “POST”, headers: { Authorization: ${this.monday.$auth.api_key}, “Content-Type”: “application/json”, }, data: { query, }, }); return response.data; }, });

does this help?

i create an new code it’s work thank you for your help