Solved

multiple webhook?

  • 29 January 2024
  • 2 replies
  • 41 views

Userlevel 3
Badge

mutation {
  createWebhook(input: {
    actions: [
            "card.field_update",
            "card.create",
            "card.move",
            "card.delete"
    ],
    name: "Webhook",
    pipe_id: 302383334
    url: "https://webhook.site/3b43ca0a-15ae-41b2-89a1-5da6fa695f62"
  }) {
    webhook {
      id
      actions
      url
    }
  }
}

 

Is it possible to have multiple webhooks for several pipe_ids? At the same end point

icon

Best answer by genietim 6 February 2024, 09:13

View original

2 replies

Userlevel 7
Badge +15

Do you want to create cards in two different pipes in the same API call?

It's not possible.

Perhaps the problem can be solved by creating the first card via API and the others via native Pipefy automation.

Userlevel 7
Badge +12

Yes, it is possible to have multiple webhooks for several pipe_ids with the same end point. However, you have to register them separately: running the query you show above for one pipe at a time.

Reply