Skip to main content

 


Hi, I am testing pipefy webhooks, but I have created two webhhooks for the same endpoint and I would like to remove one of them.
 

Hi Paulo, how are you?

 

First query your pipe to find registered Webhooks:

query ($id: ID!){pipe(id:$id){id webhooks{id url headers actions}}} 

 

Than with the Webhook Id call the mutation do delete it:

mutation ($input:DeleteWebhookInput!){deleteWebhook(input:$input){clientMutationId success}}

 

Hope it helps. 

 


Reply