Query Cell Value via API

I am struggling to query a particular cell value from my Monday board. I have pulled all my Row IDs into a Dictionary and pulled all my Column IDs into a Dictionary.

I am trying to mock this up in Postman. I do have the Postman Monday APIs loaded.

For example let say I have Row ID 123456789 and I am trying to fetch Column ID “numbers4”. How would I do that? Any time I try a column ID filter the API doesn’t like “numbers4” or I am specifying it in the wrong format.

I can get all the columns for example that have a number format:

{
“query”: “query { items (ids:[123456789]) { column_values { … on NumbersValue { number id } } } }”
}

But how would I get a single column with ID “numbers4”?

Thanks.

hi @phaferman

Welcome to the community. You can query one specific column by entering its columnId like this:

{
  items(ids: [123456789]) {
    column_values (ids:"numbers4") {
      ... on NumbersValue {
        number
        id
      }
    }
  }
}