Question

Webhook test

  • 26 January 2024
  • 1 reply
  • 64 views

Userlevel 3
Badge

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"
    }
  ]
}


1 reply

Userlevel 7

Hi @tech-lazertur!

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

Reply