Skip to main content

How to get the actual values and not just Ids for columns of type dropdown?

  • March 22, 2024
  • 1 reply
  • 118 views

Hi, how can the actual values be pulled with an API query rather then just the ids of dropdowns or other similar column types?

Thank you

1 reply

rachelatmonday
Forum|alt.badge.img
  • monday.com Team Member
  • March 22, 2024

Hi @Vlado,

You can retrieve the value of a dropdown column with a query like the following (see docs here):

query {
  items (ids:[1234567890, 9876543210]) {
    column_values {
      ... on DropdownValue {
        values {
          label
        }
      }
    }
  }
}

Let us know if you have any other questions!

Best,
Rachel