URGENT: wasn't able to publish the changes.
# support
s
My changes are not getting saved in the vapi assistant even though I tried publishing. If i check the network calls im getting this error: { "message": "Credential with ID '85e79b7e-043b-4089-a36a-3795c7c7054e' not found or does not belong to your organization.", "error": "Bad Request", "statusCode": 400 }
v
Your error is caused by referencing a credential ID that doesn't exist or isn't part of your organization. To quickly resolve this, update your assistant configuration to use inline authentication instead of the invalid credential ID. For example, replace:
Copy code
json
{
  "server": {
    "url": "https://your-webhook.com",
    "credentialId": "85e79b7e-043b-4089-a36a-3795c7c7054e"
  }
}
with:
Copy code
json
{
  "server": {
    "url": "https://your-webhook.com",
    "secret": "your-webhook-secret"
  }
}
This should allow you to publish your changes immediately. For a permanent fix, create or select a valid credential in your Vapi dashboard and update your configuration accordingly (information found in documentation). Source: - [Vapi documentation: credential authentication issue and fix](https://docs.vapi.ai/server-url/server-authentication)
c
Hi Sathvika, Thanks for reaching out. Could you please share a bit more about what you’re trying to accomplish with these changes? Understanding your goal will help us guide you toward the right solution more quickly.
3 Views