So under API v1, I was using the “/v1/boards/{board_id}/pulses.json” method to find the latest created pulse on a board. How can I do this with v2? I have:
{
boards(ids: 183208254) {
items {
id
name
}
}
}
But not seeing what I can add to the items group to retrieve the creation date. Is there an alternate/better way to do this? Otherwise, when are webhooks coming out so I can capture the pulse creation that way?
Hey Jake, at the moment I’d suggest either using webhooks or storing the IDs of the already-created items in an array in your application, so you can check against it for new items.
I’m also going to loop in one of our devs, @Ayelet. Ayelet, do you have any more ideas for a workaround?
Hey @jake,
I agree with @dipro that the webhooks alpha feature is the best solution.
We are also working on a way to subscribe to a webhook via the GraphQL API so you will be able to do everything in your code without using the monday.com interface.