Skip to main content

How to get my items id selected on a board multi items menu feature APP using API?

  • March 1, 2024
  • 2 replies
  • 177 views

I have create and application on the development center, then I have create a feature on the section of Board multi items menu but, when a select 3 items and go to my application I am only receiving a sessionToken in the request. I do not see a way to make a API call to retrieve the 3 selected items I have.

How can I get my batch or context information with the items I had selected in order to execute my actions on those ids?? I am using API calls, no SDK at the moment.

Please advise.
Ronald

2 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • March 10, 2024

Hello there @ronaldswaypc ,

You will have to use the SDK in this case. It is the only way of getting the selected items’ IDs.

Let me know if you have any other questions 🙂

Cheers,
Matias


  • New Participant
  • November 13, 2025

Hi, when I try to use the SDK to get the selected item ids in a multi-item feature, with a simple client-side Javascript app, the code `monday.get(“itemIds”)` hangs forever. A minimal version of my script:

const monday = window.mondaySdk();
const context = await monday.get("context");
console.log('Got context', context); // Prints as normal
console.log('about to get itemIds');
const res = await monday.get("itemIds");
console.log('got itemIds', res); // This line is never reached.

Is there something else I should be doing to get the selected itemIds? Thanks!