Skip to main content

Looking for a simple API call to fetch board and view pulses as table

  • September 26, 2019
  • 1 reply
  • 1898 views

Hi,
I am just looking for a way to simply call a board via API and retrieve all pulses to be available in simple JSON or XML format to convert to a table.

The help will be highly appreciated.
Thanks

This topic has been closed for replies.

1 reply

Scott-monday.com
Forum|alt.badge.img

Hi @suyashjain 👋

Absolutely! Here’s an example of how you can accomplish this:

query {
  boards (ids: 1234567890) {
      name
      items {
        id
        column_values {
          id
        }
      }
    }
}

Is this helpful? Let me know if you have any questions 🙂 🙌

Best,
Scott