Skip to main content

Getting Status Text Value from item using Zapier Webhooks

  • April 29, 2024
  • 5 replies
  • 150 views

jonathank

I’m trying to get the text value of a status column for a specific item using Zapier webhooks.

And I’m getting the following error?

Thank you in advanced!

5 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • April 30, 2024

Hello there @jonathank,

In this case, instead of using the boards->items structure, you need to use boards->items_page->items as explained here 😀

Example:

query {
  boards (ids: 1234567890){
    items_page (limit: 100) {
      cursor
      items {
        id 
        name 
      }
    }
  }
}

I hope that helps!

Cheers,
Matias


jonathank
  • Author
  • New Participant
  • April 30, 2024

Thanks @Matias.Monday,

and this is the error I’m getting…


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • May 1, 2024

Hello again @jonathank,

The JSON looks good to me. I tested it using Postman and it works well:

In this case, I believe you will need to contact Zapier’s team in order for them to check how you need to configure this custom action that Zapier created for your query to go through 😀

Let me know if you need any information from our end!

Cheers,
Matias


jonathank
  • Author
  • New Participant
  • May 3, 2024

@Matias.Monday - Thank you sir, got it to work!


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • May 5, 2024

I am glad that is the case @jonathank 😀