0

I am using webhook integration to sync monday.com tasks' update, Unfortunately the baseUrl changed and I need to update the webhooks URL accordingly, Is it possible to do that?

M.Shaltoot
  • 33
  • 7

1 Answers1

1

The following GraphQL will list existing webhooks. This is documented on the Monday.com developer board: Webhooks Queries

query {
  webhooks(board_id:1721464578){
    id
    event
    board_id
    config
  }
}

The following is GraphQL to delete specific webhooks by id. This is documented on the Monday.com developer board: Delete a webhook

mutation {
    delete_webhook(id:12) {
        id
        board_id
    }
}

You can then create webhooks via GraphSQL shared on the Monday.com developer board: Create a webhook

A great tool is the Monday.com API Playground where you can try all these queries out.

I have not yet found how to update a webhook via GraphQL.

Jennifer Goncalves
  • 1,442
  • 1
  • 12
  • 29