Not able to add Headers in Server URL
# support
p
When i am adding the key and value, it is showing the message that it is saved. But it is not coming in the webhook request and also showing if i reload the page.
v
Hey! To help track down this issue, could you share: - The call ID - When exactly this happened (the timestamp) - What response you expected to get - What response you actually got instead This would really help us figure out what went wrong!
p
it is not a particular issue, it is the issue on account level
s
@pankaj can you record a loom video so I can take a look?
This will help me understand what's going wrong for you!!
v
Hey @pankaj, the tool call header UI had issues, but they’re fixed. The updated version will be released on Tuesday. Until then, please use the API to update your tool headers.
example
Copy code
curl -X PATCH "https://api.vapi.ai/tool/YOUR_TOOL_ID" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "server": {
      "headers": {
        "forwarddeployedtoken": "Bearer your-forward-deployed-token",
        "X-Tracking-ID": "tracking-12345"
      }
    }
  }'