Getting Status Text Value from item using Zapier Webhooks

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!

Hello there @jonathank,

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

Example:

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

I hope that helps!

Cheers,
Matias

Thanks @Matias.Monday,

and this is the error I’m getting…

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 :smile:

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

Cheers,
Matias

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

I am glad that is the case @jonathank :smile: