I'm doing a workflow, and I want it to be triggered by a webhook. Everything looks fine, so I get the proper API key, and I'm trying to do a request, but it is not working for whatever reason. Here is the link I am using in this scenario. And here is the way I am attaching workflow API key. Everything looks fine. I'm following the docs.
But I'm constantly getting the error that the API key is wrong. I have tried rotating that already.
Yes that's exactly what I'm trying to do. I'm passing it as an URL parameter. I intentionally do not want to pass it to as header. And I thought this is the option number two in docs.
If I pass it as header it works. But I want just a url to work too. Is this possible?
Got it, that makes sense. It looks like it might be as simple as a typo? Youβre passing workFlowApiKey, notice the capital βFβ, but the URL param workflowApiKey no capital.
The issue is caused by typo in thr URL parameter name.you are passing workFlowApikey(capital βFβ) but it should be workflowApikey(lower-case βfβ),as required by the API.