Skip to main content
Solved

Webhook test

  • January 26, 2024
  • 2 replies
  • 392 views

tech-lazertur
Forum|alt.badge.img

I am using the following GraphQl code with the correct substitutions:

mutation {
    createWebhook(input:
    {
        actions: [
            "card.field_update"
        ],
        name: "<Some Name to Remember What This WebHook Does>",
        url: "<The URL you got From Zapier>",
        pipe_id: "<The ID of the Pipe you want the WebHook to be associated with>"
    }) {
        clientMutationId 
    }
}

 

However, when I run the following code in:

https://app.pify.com/graphiql

 

I receive the following error message:

{
  "data": {
    "createWebhook": null
  },
  "errors": [
    {
      "message": "Permission denied",
      "locations": [
        {
          "line": 4,
          "column": 3
        }
      ],
      "path": [
        "createWebhook"
      ],
      "code": 30001,
      "type": "PermissionDeniedError"
    }
  ]
}

Best answer by Lais Laudari

Hi @tech-lazertur!

This documentation available here may help you, but let us know if you still have difficulties!😉

2 replies

Lais Laudari
  • 536 replies
  • Answer
  • January 26, 2024

Hi @tech-lazertur!

This documentation available here may help you, but let us know if you still have difficulties!😉


  • Explorer
  • 2 replies
  • June 12, 2024

I am using the following GraphQl code with the correct substitutions:

mutation {
    createWebhook(input:
    {
        actions: [
            "card.field_update"
        ],
        name: "<Some Name to Remember What This WebHook Does>",
        url: "<The URL you got From Zapier>",
        pipe_id: "<The ID of the Pipe you want the WebHook to be associated with>"
    }) {
        clientMutationId 
    }
}

 

However, when I run the following code in:

https://app.pify.com/graphiql

 

I receive the following error message:

{
  "data": {
    "createWebhook": null
  },
  "errors": [
    {
      "message": "Permission denied",
      "locations": [
        {
          "line": 4,
          "column": 3
        }
      ],
      "path": [
        "createWebhook"
      ],
      "code": 30001,
      "type": "PermissionDeniedError"
    }
  ]
}

In the realm of modern digital communication, webhooks have become an indispensable tool for facilitating real-time data exchange between applications and services. A webhook is essentially a user-defined HTTP callback, a way for one application to provide other applications with real-time information. When a certain event occurs in one application, it can trigger an HTTP request to a specified URL https://dudemods.com/, carrying relevant data payloads. This mechanism enables seamless integration and automation across various platforms, allowing for streamlined workflows and enhanced efficiency in data processing and communication.